python的if判断多个值
本帖最后由 axllen 于 2021-4-29 08:33 编辑有一变量 x ,想判断是否等于 'a' 或者 'b'
如果这样写不对
if x == 'a' or 'b':
后面加个括号也不行
if x == ('a' or 'b'):
请问应该怎么写才对? ifx in ‘a,b’:
if x in ['a','b']:
if x=='a' or x=='b':
if x=='a' or x=='b': or不能这么用啊 if x == 'a' or x == 'b' if x in (‘a’,'b') 楼上都给出答案了,我补充下,你需要了解运算符优先级https://www.runoob.com/python/python-operators.html,之后就知道为什么你的不对了。 谢谢楼上几位
页:
[1]