Python/ref keyword else

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python else关键字

❮Python关键字

如果x大于3,则打印“是”,否则打印“否”:

    x = 2
if x > 3:
  
    print("YES")
else:
  print("NO")

定义和用法

The else 关键字在条件语句(if语句)中使用,并确定在条件为False时该怎么做。

The else 关键字也可以在try ... except块中使用,请参见下面的示例。

更多例子

在try ... except块中使用else关键字定义未引发错误时的处理方法:

    x = 5

try:
  x > 10
except:
  
    print("Something went wrong")
else:
  
    print("The 'Try' code was executed without raising any errors!")

相关页面

The if 关键词。

The elif 关键词。

了解更多关于条件语句的信息 Python条件教程

.

❮Python关键字