0
Help won't work
print("what is your name") name = sys.stdin.readline() print("hello" , name)
3 Respuestas
0
why dont you use:
name = input("what is your name: " );
print("hello ", name)
0
ok
0
name = raw_input("what's your name: ")
print("what is your name") name = sys.stdin.readline() print("hello" , name)