while循环仅适用于一个条件

时间:2017-11-25 04:44:45

标签: python while-loop

我试图验证用户的输入,因此他/她只输入'all'或'sel'(不区分大小写)。可能只是出现了一些语法错误。

choice=input('Type "all" or "sel": ')
choice=choice.lower()

while choice!=('sel' or 'all'):
    choice=input('Invalid input. Try again: ')
    choice=choice.lower()

这只有在我输入'sel'而不是'all'时才有效。

0 个答案:

没有答案