Python常用的运算符

Posted 喵喵的汪汪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python常用的运算符相关的知识,希望对你有一定的参考价值。

1、算术运算符------  +  -  *  /  %  //

 

 

 

 

2、比较运算符------  >  <  >=  <=  !=  ==

 

 

 3、赋值运算符------  =  +=  -=

 

 4、逻辑运算符-------  and or  not

 

 这三个逻辑运算符一起时,优先级为:not>and>or

推荐菜鸟教程中关于逻辑运算符的测试题

x = True
y = False
z = False

if not x or y:
    print(1)
elif not x or not y and z:
    print(2)
elif not x or y or not y and x:
    print(3)
else:
    print(4)

-------------------------------------------------------------------

以上的结果输入为:
A 1
B 2
C 3
D 4

 

5、成员运算符-------  in   not in 

 

 

以上是关于Python常用的运算符的主要内容,如果未能解决你的问题,请参考以下文章

python常用代码

如何在 python 中并行化以下代码片段?

python使用上下文对代码片段进行计时,非装饰器

python---Numpy模块中数组运算的常用代码示例

[Python]常用代码块

Python 常用模块学习