import random
print(random.random()) #随机取值
print(random.randint(1,4)) #随机从1到4去一个整数,包含1和4
print(random.choice([1,2,3,4])) #随机从列表中选一个,返回字符串
print(random.choices([1,2,3])) #随机从列表中选一个,返回list
print(random.randrange(1,4)) #随机从1到4去一个整数,包含1和不包含4
print(random.sample([1,2,3],2)) #随机从列表中选2个,返回list
print(random.uniform(1,5)) #返回return a + (b-a) * self.random()
python3学习之random
原创
©著作权归作者所有:来自51CTO博客作者lejie851112的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:我的友情链接

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章