From 354706e53e6498934af43ef8cb2061a9f129e8ae Mon Sep 17 00:00:00 2001 From: LSGOMYP Date: Wed, 22 Jul 2020 16:50:49 +0800 Subject: [PATCH] =?UTF-8?q?Update=2003.=20=E6=9D=A1=E4=BB=B6=E8=AF=AD?= =?UTF-8?q?=E5=8F=A5.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Python-Language/03. 条件语句.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python-Language/03. 条件语句.md b/Python-Language/03. 条件语句.md index 23c2212..1912d8e 100644 --- a/Python-Language/03. 条件语句.md +++ b/Python-Language/03. 条件语句.md @@ -25,7 +25,7 @@ if 2 > 1 and not 2 > 3: ```python if expression: expr_true_suite -else +else: expr_false_suite ``` - Python 提供与 if 搭配使用的 else,如果 if 语句的条件表达式结果布尔值为假,那么程序将执行 else 语句后的代码。