Python if函数
时间: 2024-05-24 09:08:23 浏览: 131
python if 语句
Python中的if语句用于根据条件执行特定的代码块。if语句的语法格式如下:
```python
if condition:
# code to execute if condition is true
else:
# code to execute if condition is false
```
其中,condition是需要判断的条件,如果为True,则执行if语句块中的代码;否则执行else语句块中的代码。
下面是一个简单的例子,演示了如何使用if语句:
```python
num = 10
if num > 0:
print("num is positive")
else:
print("num is negative or zero")
```
输出结果为:
```
num is positive
```
如果num的值小于等于0,则输出结果为:
```
num is negative or zero
```
阅读全文