Fix format error in operator table
There should be an escape character for `\|`. Otherwise, it'll not display correctly.pull/252/head
parent
d9ec811930
commit
98b0122821
|
@ -123,7 +123,7 @@ Python支持多种运算符,下表大致按照优先级从高到低的顺序
|
|||
| `is` `is not` | 身份运算符 |
|
||||
| `in` `not in` | 成员运算符 |
|
||||
| `not` `or` `and` | 逻辑运算符 |
|
||||
| `=` `+=` `-=` `*=` `/=` `%=` `//=` `**=` `&=` `|=` `^=` `>>=` `<<=` | (复合)赋值运算符 |
|
||||
| `=` `+=` `-=` `*=` `/=` `%=` `//=` `**=` `&=` `\|=` `^=` `>>=` `<<=` | (复合)赋值运算符 |
|
||||
|
||||
>**说明:** 在实际开发中,如果搞不清楚运算符的优先级,可以使用括号来确保运算的执行顺序。
|
||||
|
||||
|
|
Loading…
Reference in New Issue