python中else的用法
时间: 2023-09-29 14:03:23 浏览: 60
python的else子句使用指南
在Python中,else语句用于在if语句条件不成立时执行一段代码。语法如下:
```python
if condition:
# code to be executed if condition is true
else:
# code to be executed if condition is false
```
当if语句条件为false时,else语句后面的代码会被执行。else语句也可以与if语句连用,形成if-else语句,如下所示:
```python
if condition:
# code to be executed if condition is true
else if another_condition:
# code to be executed if another_condition is true
else:
# code to be executed if neither condition is true
```
else if也可以写为elif,这是Python中特有的关键字,用于形成多条件判断。
阅读全文