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常用的运算符的主要内容,如果未能解决你的问题,请参考以下文章