python官网给出的运算符
https://docs.python.org/zh-cn/3.9/reference/lexical_analysis.html#string-and-bytes-literals

  1. + - * ** / // % @
  2. << >> & | ^ ~ :=
  3. < > <= >= == !=

以下截图参考: https://www.runoob.com/python/python-operators.html#ysf1

算术运算符

image.png

比较运算符

image.png

赋值运算符

image.png

逻辑运算符

image.png

位运算符

这个运算符在常规开发中很少用到,作为了解皆可
image.png

成员运算符

image.png

身份运算符

身份运算符用于比较两个对象的存储单元
image.png

运算符优先级

这个一般符合常识,因此重点记忆特殊运算符即可,用到再来查询,不用强行记忆。
image.png