name= print("hello sir what is your name?: ")
wait = input("Press enter to continue")
username= print("that is very nice, now tell me what your user online id is: ")
wait = input("press enter after you are finished.")
print("okay your username is " + username + " and your real name is " + name)
Look this is my script, the first few parts work but than the last part does not it comes up with "TypeError: Can't convert 'NoneType' object to str implicitly" First part with the name and username works but at the end it does not!
TypeError: Can't convert 'NoneType' object to str implicitly
wait = input("Press enter to continue")
username= print("that is very nice, now tell me what your user online id is: ")
wait = input("press enter after you are finished.")
print("okay your username is " + username + " and your real name is " + name)
Look this is my script, the first few parts work but than the last part does not it comes up with "TypeError: Can't convert 'NoneType' object to str implicitly" First part with the name and username works but at the end it does not!
TypeError: Can't convert 'NoneType' object to str implicitly