- Mastering Python Scripting for System Administrators
- Ganesh Sanjiv Naik
- 166字
- 2021-07-02 14:00:27
Python if...elif...else statement
The elif statement checks multiple statements for a true value. Whenever the value evaluates to true, that code block gets executed. Refer to the following syntax:
if test expression:
if block statements
elif test expression:
elif block statements
else:
else block statements
elif is short for else if. It allows us to check for multiple expressions. If the condition written in the if statement is false, then it will check the condition of the next elif block, and so on. If all of the conditions are false, the body of else is executed.
Only one block among the several if...elif...else blocks is executed according to the condition. The if block can have only one else block. But it can have multiple elif blocks. Let's take a look at an example:
a = 10
if a > 50:
print("a is greater than 50")
elif a == 10:
print("a is equal to 10")
else:
print("a is negative")
Output:
a is equal to 10
推薦閱讀
- Spring 5.0 By Example
- 測試驅動開發:入門、實戰與進階
- 密碼學原理與Java實現
- Learning RabbitMQ
- Scala Design Patterns
- PyTorch Artificial Intelligence Fundamentals
- AIRAndroid應用開發實戰
- 我的第一本算法書
- Data Analysis with IBM SPSS Statistics
- Scala編程實戰(原書第2版)
- Elasticsearch Server(Third Edition)
- Mastering Git
- Python Essentials
- Extending Unity with Editor Scripting
- 算法設計與分析:基于C++編程語言的描述