if else语句写法
时间: 2024-04-30 20:16:01 浏览: 170
if else 语句
if else语句是一种条件语句,用于根据条件的真假执行不同的代码块。以下是两种if else语句的写法的示例:
1. 使用if else语句的基本写法[^1]:
```python
num = 10
if num > 0:
print("Number is positive")
else:
print("Number is negative or zero")
```
2. 使用if、elif和else语句的多条件写法[^2]:
```python
status = 1
if status == 1:
# 正确的处理逻辑
# doSomeThing for 1
elif status == 2:
# 错误的处理逻辑
# doSomeThing for 2
else:
# 记录错误的status
```
在第一个示例中,如果num大于0,则打印"Number is positive";否则,打印"Number is negative or zero"。在第二个示例中,根据status的不同取值,执行不同的处理逻辑。
阅读全文