码迷,mamicode.com
首页 > 其他好文 > 详细

random模块

时间:2021-05-24 00:50:09      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tor   port   sel   sample   table   coff   css   sam   print   

一、random模块

1
import random
1
2
# 大于0且小于1之间的小数
print(random.random())
1
0.42866657593385415
1
2
# 大于等于1且小于等于3之间的整数
print(random.randint(1, 3))
1
3
1
2
# 大于等于1且小于3之间的整数
print(random.randrange(1, 3))
1
2
1
2
# 大于1小于3的小数,如1.927109612082716
print(random.uniform(1, 3))
1
2.1789596280319605
1
2
# 列表内的任意一个元素,即1或者‘23’或者[4,5]
print(random.choice([1, ‘23‘, [4, 5]]))
1
[4, 5]
1
2
# random.sample([], n),列表元素任意n个元素的组合,示例n=2
print(random.sample([1, ‘23‘, [4, 5]], 2))
1
[‘23‘, 1]
1
2
3
4
lis = [1, 3, 5, 7, 9]
# 打乱l的顺序,相当于"洗牌"
random.shuffle(lis)
print(lis)
1
[9, 1, 5, 7, 3]

random模块

标签:tor   port   sel   sample   table   coff   css   sam   print   

原文地址:https://www.cnblogs.com/bubu99/p/14742282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!