Python字符串不起作用(==)

时间:2016-11-01 10:37:01

标签: python

这是我的语法:

input("Has the phone got wet?")

if input is "yes".strip('\n'):
    print("that's the problem")
else:
    print("okay")

2 个答案:

答案 0 :(得分:0)

尝试使用==而不是:

answer = input("Has the phone got wet?")
if answer == "yes":
    print("that's the problem")
else:
    print("okay")

答案 1 :(得分:-3)

使用input时,将引号中的值传递给引号。喜欢 Has the phone got wet?"yes"

而不是这样: Has the phone got wet?yes

如果您不想输入引号,可以使用raw_input