我试图验证用户的输入,因此他/她只输入'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'时才有效。