When I run this code it has an output of "none"
def typewrite(string):
    for i in string:
        sys.stdout.write(i)
        sys.stdout.flush()
        time.sleep(0.04)
username = input(typewrite(f'''
    ░▒▓▆▅▃▂▁ ▁▂▃▅▆▓▒░   
    Welcome adventurer, what is your name? 
'''))
print(typewrite("Alright hero " + username + " let the adventure begin!"))
I don't know what to try and I expect it to not have "none"
 
    