首页 > 编程语言 > 详细

Python:运算优先级

时间:2022-05-27 22:54:04      阅读:15      评论:0      收藏:0      [点我收藏+]
# 算数运算符优先级(+-*/等)> 比较运算符(>,<,=)优先级 > 逻辑运算符(not,and,or)
# 逻辑运算符中,not > and > or
# 不确定,可以加()
if not 1 and 1 + 3 > 2 or 3 == 8:
    print(True)
else:
    print(False)

Python:运算优先级

原文:https://www.cnblogs.com/yin-py/p/15349074.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!