python基础6 运算符
Posted laoliu07
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础6 运算符相关的知识,希望对你有一定的参考价值。
1、运算符
+ - * / ** % //
判断某个东西是否在某个东西里面包含
in not in
结果就是布尔值。
如:
name="杨超越"
if "杨" in name:
print(‘ok‘)
else:
print(‘error‘)
not in 相反
布尔值:True 真 False 假
如:
n=9==2
print(n)
输出:False
9==2就是一个布尔值,不成立就是False
与或非:and or not
1==1 and 2==2 为真Ture
1==1 and 2==3 or 3==3 and 4==5 从左到右 结果为False
以上是关于python基础6 运算符的主要内容,如果未能解决你的问题,请参考以下文章