lambda: Lambda Expression
if - else: Conditional expressionor: Boolean OR
and: Boolean ANDnot x: Boolean NOT
in, not in, is, is not, <, <=, >, >=, !=, ==: Comparisons, including membership tests and identity tests
| : Bitwise OR
^ : Bitwise XOR
& : Bitwise AND
<<, >>: Shifts
+, -: Addition and subtraction
*, /, //, %: Multiplication, Division, Floor Division and Remainder
+x, -x, ~x: Positive, Negative, bitwise NOT
**: Exponentiation
整理自:《A Byte of Python》