if和index函数使用举例
时间: 2024-10-08 22:12:47 浏览: 25
`if` 和 `index` 是 Python 中常用的两个功能,它们分别用于条件判断和数组索引查找。
1. **if** 语句示例:
```python
numbers = [1, 2, 3, 4, 5]
# 判断某个元素是否在列表中
if 3 in numbers:
print("3 is present")
else:
print("3 is not present")
# 根据条件执行不同的操作
x = 0
if x > 0:
print("x is positive")
elif x == 0:
print("x is zero")
else:
print("x is negative")
```
2. **index()** 函数示例:
```python
fruits = ["apple", "banana", "cherry"]
# 查找元素在列表中的位置
fruit_index = fruits.index("banana") # 输出:1
if fruit_index != -1: # 如果元素存在,index()不会返回-1
print(f"Found 'banana' at index {fruit_index}")
else:
print("Element not found in the list")
```
`index()` 会抛出 `ValueError` 如果给定的元素不在列表中。
阅读全文