python random.uniform()函数 Python中的random.uniform()函数教程与实例解析
Leo_Sheng 人气:1random.uniform( ) 函数教程与实例解析
1. uniform( ) 函数说明
random.uniform(x, y)
方法将随机生成一个实数,它在 [x,y]
范围内。
2. uniform( ) 的语法与参数
2.1 语法
# _*_ coding: utf-8 _*_ import random random.uniform(x, y)
或
# _*_ coding: utf-8 _*_ from random import uniform uniform(x, y)
提示:uniform 包含在random库中,需要使用时需导入random库。
2.2 参数
- x -- 随机数的最小值,包含该值。
- y -- 随机数的最大值,不包含该值。
- 返回一个浮点数
3. 实例
例程:
# _*_ coding: utf-8 _*_ import random print("uniform(1 , 6) 的随机返回值为 : ", random.uniform(1 , 6)) print("uniform(10, 16) 的随机返回值为 : ", random.uniform(10, 16))
运行结果:
#uniform(1 , 6) 的随机返回值为 : 3.001161523486847
#uniform(10, 16) 的随机返回值为 : 13.70906147017741
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
加载全部内容