python if-else语句
时间: 2023-09-12 18:02:55 浏览: 98
python if-else 写在一行(csdn)————程序.pdf
Python的if-else语句是一种控制流语句,用于根据条件执行不同的代码块。
基本语法:
```python
if condition:
# code block to be executed if the condition is True
else:
# code block to be executed if the condition is False
```
- `condition` 是需要判断的条件,可以是任何返回布尔值的表达式。
- `:` 是必须的,表示代码块的开始。
- `code block` 是需要执行的代码,必须缩进,通常使用四个空格缩进。
示例:
```python
num = 10
if num > 0:
print("num is positive")
else:
print("num is zero or negative")
```
输出:
```
num is positive
```
在上面的示例中,如果 `num` 大于0,则打印 "num is positive",否则打印 "num is zero or negative"。
else语句是可选的,可以只使用 if 语句。也可以添加多个 elif 语句来检查多个条件。
阅读全文