Python的运算符和其他语言类似
(我们暂时只了解这些运算符的基本用法,方便我们展开后面的内容,高级应用暂时不介绍)
数学运算
# @param Python基础教程04 运算
# @author 编程之家 jb51.cc|www.512Pic.com
>>>print 1+9 # 加法
>>>print 1.3-4 # 减法
>>>print 3*5 # 乘法
>>>print 4.5/1.5 # 除法
>>>print 3**2 # 乘方
>>>print 10%3 # 求余数
# End www.jb51.cc
判断
判断是真还是假,返回True/False
# @param Python基础教程04 运算
# @author 编程之家 jb51.cc|www.512Pic.com
>>>print 5==6 # =, 相等
>>>print 8.0!=8.0 # !=,不等
>>>print 3<3,3<=3 # <,小于; <=,小于等于
>>>print 4>5,4>=0 # >,大于; >=,大于等于
>>>print 5 in [1,3,5] # 5是list [1,5]的一个元素
# End www.jb51.cc
(还有is,is not等,暂时不深入)
逻辑运算
True/False之间的运算
# @param Python基础教程04 运算
# @author 编程之家 jb51.cc|www.512Pic.com
>>>print True and True,True and False # and,“与”运算, 两者都为真才是真
>>>print True or False # or,"或"运算, 其中之一为真即为真
>>>print not True # not,“非”运算, 取反
# End www.jb51.cc
可以和上一部分结合做一些练习,比如:
# @param Python基础教程04 运算
# @author 编程之家 jb51.cc|www.512Pic.com
>>>print 5==6 or 3>=3
# End www.jb51.cc
总结
数学 +,-,*,/,**,%
判断 ==,!=,>,>=,<,<=,in
逻辑 and,or,not
原文链接:https://www.f2er.com/python/527208.html