random()是Python3中random模块的内置函数。随机模块提供对各种有用函数的访问,其中之一能够生成随机浮点数,即random()。
用法:random.random()
参数:此方法不接受任何参数。
返回:此方法返回0到1之间的随机浮点数。
范例1:sample()函数的简单实现。
Python3
# Python3 program to demonstrate
# the use of random() function .
# import random
from random import random
# Prints random item
print(random())
输出:
0.41941790721207284
范例2:
Python3
# Python3 program to demonstrate
# the use of random() function .
# import random
from random import random
lst = []
for i in range(10):
lst.append(random())
# Prints random items
print(lst)
输出:
[0.12144204979175777, 0.27614050014306335, 0.8217122381411321, 0.34259785168486445, 0.6119383347065234, 0.8527573184278889, 0.9741465121560601, 0.21663626227016142, 0.9381166706029976, 0.2785298315133211]
相关用法
- Python Wand function()用法及代码示例
- Python tell()用法及代码示例
- Python now()用法及代码示例
- Python oct()用法及代码示例
- Python cmp()用法及代码示例
- Python map()用法及代码示例
- Python int()用法及代码示例
- Python id()用法及代码示例
- Python dir()用法及代码示例
- Python ord()用法及代码示例
- Python sum()用法及代码示例
- Python hex()用法及代码示例
- Python frexp()用法及代码示例
- Python cmath.tan()用法及代码示例
- Python isdisjoint()用法及代码示例
- Python strftime()用法及代码示例
- Python math.sin()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 random.random() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。