By printing out of raw_input() appears at the end a "none".
I defined above a function to look nice when printing the question.
Here's my code:
def delay_print_input(string):
for c in string:
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(0.15)
ans=raw_input(delay_print_input("What do you want?\n>> "))
The output looks like:
What do you want?
>> None
My question is, how can I remove this none?