我在中间进行基本的竞赛选择输入。
userInput = input
print ('I choose a(n)', userInput)
if userInput is ('Human'):
input ('I like Humans, help that I am one')
if userInput is ('Orc'):
print ('Hate orcs, I dont like green :(')
if userInput is ('Android'):
print ('Robots are cool, so by theory Androids are too')
else:
print ('Try Again')
但是输出很奇怪...
I choose a(n) <built-in function input>
Try Again
看到脚本的问题吗?我认为它不会等待输入,并且由于没有输入,它只是说"再试一次",但我不确定如何解决该问题。 这可能是一个简单的解决方案,但老实说我不知道:(
尝试
userInput = input()
即input()
是函数调用