python 数组中查询元素
时间: 2023-09-14 17:02:25 浏览: 69
数组元素查询
在Python中,可以使用in关键字来查询一个元素是否在数组中。
例如,假设有一个包含数字的数组:
```python
my_array = [1, 2, 3, 4, 5]
```
要查询数字3是否在数组中,可以使用以下代码:
```python
if 3 in my_array:
print("3 is in the array")
else:
print("3 is not in the array")
```
这将输出“3 is in the array”,因为3确实在数组中。如果要查询一个不在数组中的元素,例如6:
```python
if 6 in my_array:
print("6 is in the array")
else:
print("6 is not in the array")
```
这将输出“6 is not in the array”。
阅读全文