From 90bfcc2ae1cbbf395083aa3a777919555ec3b19b Mon Sep 17 00:00:00 2001 From: PEQB Date: Sat, 19 Jul 2025 17:06:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BA=86=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=96=87=E6=A1=A3?= 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 257b49a..eb0d348 100755 --- a/Day01-20/04.Python语言中的运算符.md +++ b/Day01-20/04.Python语言中的运算符.md @@ -11,7 +11,7 @@ Python 语言支持很多种运算符,下面的表格按照运算符的优先 | `+`、`-` | 加、减 | | `>>`、`<<` | 右移、左移 | | `&` | 按位与 | -| `^`、`|` | 按位异或、按位或 | +| `^`、`\|` | 按位异或、按位或 | | `<=`、`<`、`>`、`>=` | 小于等于、小于、大于、大于等于 | | `==`、`!=` | 等于、不等于 | | `is`、`is not` | 身份运算符 |