Python 生成随机数组
时间: 2024-04-10 17:25:32 浏览: 77
Python生成随机数组的方法小结
以下是使用Python生成随机数组的两种方法[^1][^2]:
1. 使用random模块的sample函数生成随机数组:
```python
import random
seq = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
random_array = random.sample(seq, 4)
print(random_array) # 输出:[7, 3, 1, 9]
```
2. 使用numpy库生成随机数组:
```python
import numpy as np
random_array = np.random.randint(1, 10, size=4)
print(random_array) # 输出:[7, 3, 1, 9]
```
阅读全文