From 23d9ac70a85e92f342b8a996b6cfa090dad91473 Mon Sep 17 00:00:00 2001 From: jasonxue Date: Sun, 9 Mar 2025 22:17:48 +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 修复|导致影响表格排版 --- ...\270\255\347\232\204\350\277\220\347\256\227\347\254\246.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/Day01-20/04.Python\350\257\255\350\250\200\344\270\255\347\232\204\350\277\220\347\256\227\347\254\246.md" "b/Day01-20/04.Python\350\257\255\350\250\200\344\270\255\347\232\204\350\277\220\347\256\227\347\254\246.md" index d5a75afbe..5b601b3ca 100755 --- "a/Day01-20/04.Python\350\257\255\350\250\200\344\270\255\347\232\204\350\277\220\347\256\227\347\254\246.md" +++ "b/Day01-20/04.Python\350\257\255\350\250\200\344\270\255\347\232\204\350\277\220\347\256\227\347\254\246.md" @@ -11,7 +11,7 @@ Python 语言支持很多种运算符,下面的表格按照运算符的优先 | `+`、`-` | 加、减 | | `>>`、`<<` | 右移、左移 | | `&` | 按位与 | -| `^`、`|` | 按位异或、按位或 | +| `^`、`\|` | 按位异或、按位或 | | `<=`、`<`、`>`、`>=` | 小于等于、小于、大于、大于等于 | | `==`、`!=` | 等于、不等于 | | `is`、`is not` | 身份运算符 |