#应该是把比较符的都输出了 现在我要来翻译一下了 翻译一下 今天的这个就先结束 #讲的都是运算等级
The following table summarizes the operator precedence in Python
#(下表说了运算符在python中的优先级),
fromlowest precedence (least binding) to highest precedence (most
binding)#(由低到高).
Operators in the same box have the same precedence.#同一个框中有同样的优先级
Unless the syntax is explicitly given, operators are binary.#除非明确给出语法,否则操作符是二进制的
Operators inthe same box group left to right (exceptfor exponentiation, which
groups from right to left).#在同一个等级下,会从左到右进行比较,除了幂函数(乘方)是从右到左的Note that comparisons, membership tests,and identity tests,all have
the same precedence and have a left-to-right chaining feature as
described in the Comparisons section.#请注意,比较、成员资格测试和身份测试都有具有相同的优先级和从左到右的链接功能在比较部分进行了描述。+-------------------------------------------------+---------------------------------------+| Operator 操作符 | Description 描述 ||=================================================|=======================================||"lambda" 啥玩意 | Lambda expression 表达式 |+-------------------------------------------------+---------------------------------------+|"if" – "else"| Conditional expression 条件表达式 |+-------------------------------------------------+---------------------------------------+|"or" 或 | Boolean OR |+-------------------------------------------------+---------------------------------------+|"and" 与 | Boolean AND |+----------------------------------