-6

如果 if 语句中的条件为假,将在套件之前执行哪个关键字?

这个问题是针对我在 Python 中遇到困难的作业。我试图查看章节以获取信息。

4

2 回答 2

6

你的问题的措辞很难理解,但我认为这个提示是你想要弄清楚的:

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>

于 2013-07-31T23:38:52.367 回答
3

你可以在这里找到 Python 的完整语法规范。下面是一个if-statement 的结构:

if_stmt: 'if' 测试 ':' 套件('elif' 测试 ':' 套件)* ['else' ':' 套件]
于 2013-07-31T23:40:55.843 回答