-1

当我输入外观时,我将“无”打印到屏幕上。

if input("What do you do?") == 'look':
    print("You see a room of equal length and width, You see foreign symbols on the wall.")

else:
    print("nothing")
input()         

我还没有真正习惯于 python 3,但这里的问题可能是什么?

4

1 回答 1

0
#!/usr/bin/env python3
if input("What do you do? ").strip().lower() == 'look':
    print("You see a room of equal length and "
          "width, You see foreign symbols on the wall.")
else:
    print("nothing")

这对我来说很好。为什么你有最终的输入()?

于 2013-05-24T18:27:00.173 回答