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

random 模块

时间:2018-04-15 20:51:39      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:choice   ice   模块   pre   bcd   its   str   case   range   

 

>>> import random
>>> random.random()
0.42936489785928167
>>> random.randint(1,3)    #包含3
1
>>> random.randrange(1,3)  # 不包含3
1
>>> random.choice([2,3,4,5])
3
>>> random.sample([2,3,4,5,6,7],3)
[5, 3, 2]


>>> string.digits
0123456789
>>> string.ascii_letters
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
>>> string.hexdigits
0123456789abcdefABCDEF

>>> string.ascii_lowercase + string.digits
abcdefghijklmnopqrstuvwxyz0123456789
>>> 
>>> s=string.ascii_lowercase + string.digits
>>> random.sample(s,5)
[5, w, v, q, i]
>>> 

 

洗牌

>>> l=[1,2,3,4]
>>> random.shuffle(l)
>>> l
[1, 2, 4, 3]
>>> 

 

random 模块

标签:choice   ice   模块   pre   bcd   its   str   case   range   

原文地址:https://www.cnblogs.com/infaaf/p/8849084.html

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