numpy随机生成整数怎么实现

475
2024/2/1 10:30:29
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

可以使用numpy.random.randint()函数来生成随机整数。

示例代码:

import numpy as np

# 生成一个1到10之间的随机整数
random_int = np.random.randint(1, 11)
print(random_int)

# 生成一个包含10个1到100之间的随机整数的数组
random_int_array = np.random.randint(1, 101, size=10)
print(random_int_array)

输出:

6
[35 13  5 73 33 52  4 78 62 81]

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: pycharm安装numpy库出错如何解决