不准那我的猫 发表于 2023-11-15 01:05:17

为什么在这段代码中''==''优先级要低于''and''???


题目为将输入的字符串转为:相邻大小写不可以一样;如:FishCcCode—FishCode

s = input("请输入一个字符串:")
      
    res = []
    for each in s:
      if res and res[-1].lower() == each.lower() and res[-1] != each:
            res.pop()
      else:
            res.append(each)
      
    for each in res:
      print(each, end='')
问题代码是:if res and res[-1].lower() == each.lower() and res[-1] != each:
所问问题为:在这个判断中,是先判断res为空还是先判断==???

isdkz 发表于 2023-11-15 01:05:27

在Python中,'and' 运算符的优先级高于 '==' 运算符。因此,在这个判断中,Python 会先执行 res and res[-1].lower() == each.lower(),然后再执行 and res[-1] != each。这是因为 'and' 运算符的优先级比 '==' 运算符更高,所以它会先被执行。

如果你想要显式地指定执行顺序,可以使用括号来明确表达你的意图,例如:(res and res[-1].lower() == each.lower()) and (res[-1] != each)。这样可以确保你的判断顺序符合你的预期。

小甲鱼 发表于 2023-11-15 03:42:50

先 res,再 res[-1].lower() == each.lower(),最后 res[-1] != each

不准那我的猫 发表于 2023-11-15 10:34:41

isdkz 发表于 2023-11-15 01:05
在Python中,'and' 运算符的优先级高于 '==' 运算符。因此,在这个判断中,Python 会先执行 res and res[-1 ...

但是为什么在12讲中,小甲鱼那张表上,==优先级是6,and优先级是4, 6的优先级不应该>4的么

不准那我的猫 发表于 2023-11-15 11:33:05

小甲鱼 发表于 2023-11-15 03:42
先 res,再 res[-1].lower() == each.lower(),最后 res[-1] != each

但是在12讲中,那个表里面,<,>,==的优先级是6,and的优先级是4呀,那说明==的优先级要高于and啊,怎么又变了
页: [1]
查看完整版本: 为什么在这段代码中''==''优先级要低于''and''???