py else if
时间: 2023-12-13 22:31:49 浏览: 31
if-else.py
在Python中,else if语句被称为elif语句。它用于在多个条件之间进行选择。以下是一个使用elif语句的示例:
```python
x = 10
if x < 0:
print("x is negative")
elif x == 0:
print("x is zero")
else:
print("x is positive")
```
在这个例子中,如果x小于0,则打印“x is negative”。如果x等于0,则打印“x is zero”。否则,打印“x is positive”。
阅读全文