python 创建数组
时间: 2023-07-16 18:17:27 浏览: 85
python创建数组方法,教程
在 Python 中,可以使用以下方式创建数组:
1. 使用列表(list)创建数组:
```python
my_array = [1, 2, 3, 4, 5]
```
2. 使用 numpy 库创建数组:
```python
import numpy as np
my_array = np.array([1, 2, 3, 4, 5])
```
3. 使用 array 模块创建数组:
```python
from array import *
my_array = array('i', [1, 2, 3, 4, 5])
```
这里,`'i'` 表示数组元素的类型为整数(integer)。可以根据需要选择不同的类型。
阅读全文