Python:运算优先级
时间:2022-05-27 22:54:04
收藏:0
阅读:15
# 算数运算符优先级(+-*/等)> 比较运算符(>,<,=)优先级 > 逻辑运算符(not,and,or)
# 逻辑运算符中,not > and > or
# 不确定,可以加()
if not 1 and 1 + 3 > 2 or 3 == 8:
print(True)
else:
print(False)
原文:https://www.cnblogs.com/yin-py/p/15349074.html
评论(0)