From 8534c81bd2baa4c9cdade69c8d2faa9d7ea85e41 Mon Sep 17 00:00:00 2001 From: PEQB Date: Sat, 19 Jul 2025 17:05:23 +0800 Subject: [PATCH] =?UTF-8?q?Update=2004.Python=E8=AF=AD=E8=A8=80=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E8=BF=90=E7=AE=97=E7=AC=A6.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Day01-20/04.Python语言中的运算符.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Day01-20/04.Python语言中的运算符.md b/Day01-20/04.Python语言中的运算符.md index eb0d348..257b49a 100755 --- a/Day01-20/04.Python语言中的运算符.md +++ b/Day01-20/04.Python语言中的运算符.md @@ -11,7 +11,7 @@ Python 语言支持很多种运算符,下面的表格按照运算符的优先 | `+`、`-` | 加、减 | | `>>`、`<<` | 右移、左移 | | `&` | 按位与 | -| `^`、`\|` | 按位异或、按位或 | +| `^`、`|` | 按位异或、按位或 | | `<=`、`<`、`>`、`>=` | 小于等于、小于、大于、大于等于 | | `==`、`!=` | 等于、不等于 | | `is`、`is not` | 身份运算符 |