如果 if 语句中的条件为假,将在套件之前执行哪个关键字?
这个问题是针对我在 Python 中遇到困难的作业。我试图查看章节以获取信息。
如果 if 语句中的条件为假,将在套件之前执行哪个关键字?
这个问题是针对我在 Python 中遇到困难的作业。我试图查看章节以获取信息。
你的问题的措辞很难理解,但我认为这个提示是你想要弄清楚的:
if <some condition goes here>:
<statements to execute if the statement is true>
<something goes here>:
<statements to execute if the statement is false>
用什么词代替<something goes here>
?
你可以在这里找到 Python 的完整语法规范。下面是一个if
-statement 的结构:
if_stmt: 'if' 测试 ':' 套件('elif' 测试 ':' 套件)* ['else' ':' 套件]