python 中 find 数组
时间: 2024-05-06 11:22:09 浏览: 76
Python 二维数组中的查找
5星 · 资源好评率100%
在 Python 中,可以使用 `list` 类型的变量来存储数组,然后使用 `index()` 方法来查找特定元素在数组中的位置。例如:
```python
my_array = [1, 2, 3, 4, 5]
print(my_array.index(3)) # 输出 2,因为 3 在数组中的索引位置为 2
```
另外,也可以使用 `in` 关键字来检查数组中是否包含特定元素。例如:
```python
my_array = [1, 2, 3, 4, 5]
if 3 in my_array:
print("3 存在于数组中")
else:
print("3 不存在于数组中")
```
输出结果为:“3 存在于数组中”。
阅读全文