PHP前端开发

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

百变鹏仔 2小时前 #Python
文章标签 函数

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

python中randint函数的用法是:

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

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

立即学习“Python免费学习笔记(深入)”;

用法及实现

high=None的情形

high≠None

推荐教程:《python视频教程》