Update 04.Python语言中的运算符.md

修复|导致影响表格排版
This commit is contained in:
jasonxue 2025-03-09 22:17:48 +08:00 committed by GitHub
parent 5bb9a562ea
commit 23d9ac70a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Python 语言支持很多种运算符,下面的表格按照运算符的优先
| `+`、`-` | 加、减 | | `+`、`-` | 加、减 |
| `>>`、`<<` | 右移、左移 | | `>>`、`<<` | 右移、左移 |
| `&` | 按位与 | | `&` | 按位与 |
| `^`、`|` | 按位异或、按位或 | | `^`、`\|` | 按位异或、按位或 |
| `<=`、`<`、`>`、`>=` | 小于等于、小于、大于、大于等于 | | `<=`、`<`、`>`、`>=` | 小于等于、小于、大于、大于等于 |
| `==`、`!=` | 等于、不等于 | | `==`、`!=` | 等于、不等于 |
| `is`、`is not` | 身份运算符 | | `is`、`is not` | 身份运算符 |