python官网给出的运算符
https://docs.python.org/zh-cn/3.9/reference/lexical_analysis.html#string-and-bytes-literals
+ - * ** / // % @
<< >> & | ^ ~ :=
< > <= >= == !=
以下截图参考: https://www.runoob.com/python/python-operators.html#ysf1
算术运算符
比较运算符
赋值运算符
逻辑运算符
位运算符
成员运算符
身份运算符
运算符优先级
这个一般符合常识,因此重点记忆特殊运算符即可,用到再来查询,不用强行记忆。