大家好
小弟在练习一个猜数字的问题
其中一段程式如下
res = input("Enter 'h' to indicate the guess is too high. Enter 'l' to
indicate the guess is too low. Enter 'c' to indicate I guessed correctly.")
while (res is 'c')==False:
If res=='h':
请用户输入 h 或 l 或 c
然后 用户输入的str 会放入res
我的疑问是下面的invalid syntax该如何修正呢 (我不知道问题在哪)
If res=='h':
^
SyntaxError: invalid syntax
此关于如果输入不为c
我的写法是 while (res is 'c')==False:
我好奇有其他的写法吗?
谢谢