关键字如果声明

时间:2013-07-31 23:35:30

标签: python if-statement statements

如果if语句中的条件为false,将在套件之前执行什么关键字?

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

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:3)

您可以找到Python的完整语法规范here。这是if语句的结构:

if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]