python if else
时间: 2023-10-17 16:10:26 浏览: 147
if-else.py
if else 是 Python 中用于控制程序流程的条件语句。它的基本语法如下:
```python
if condition:
# if condition is true, execute this block of code
else:
# if condition is false, execute this block of code
```
其中 `condition` 是一个条件表达式,可以是任何返回布尔值的表达式。如果 `condition` 的值为 `True`,则执行 `if` 代码块中的语句;否则执行 `else` 代码块中的语句。`else` 语句是可选的,可以省略。
例如,以下代码演示了如何使用 if else 语句来判断一个数是否为偶数:
```python
num = 10
if num % 2 == 0:
print("The number is even.")
else:
print("The number is odd.")
```
输出结果为:
```
The number is even.
```
阅读全文