欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python中randint函数的用法是什么?

程序员文章站 2022-03-23 22:19:28
...
python中randint函数的用法是什么?

python中randint函数的用法是什么?

python中randint函数的用法是:

官方文档中给出的用法是:numpy.random.randint(low,high=None,size=None,dtype)

生成在半开半闭区间[low,high)上离散均匀分布的整数值;若high=None,则取值区间变为[0,low)

用法及实现

high=None的情形

python中randint函数的用法是什么?

high≠None

python中randint函数的用法是什么?

推荐教程:《python视频教程

以上就是python中randint函数的用法是什么?的详细内容,更多请关注其它相关文章!

相关标签: python randint