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

随机模块

时间:2018-10-16 21:57:18      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:列表   imp   code   sam   orm   产生   form   sample   random   

产生一个0-1之间的浮点数

import random
ret = random.random() #产生一个0-1之间的浮点数
print(ret)

生成一个在范围内的整形随机数

ret = random.randint(1,100)
print(ret)

在列表中随机生成一个随机数

ret = random.choice([11,22,33])
print(ret)

在列表中随机生成2个随机数

ret = random.sample([11,22,33],2)
print(ret)
#[22, 33]

生成任意范围的随机数

ret = random.uniform(1,4)
print(ret)
#3.5667599195454063

将数值顺序打乱,洗牌

item = [1,2,3,4,5]
random.shuffle(item)
print(item)
#[2, 5, 3, 4, 1]

随机模块

标签:列表   imp   code   sam   orm   产生   form   sample   random   

原文地址:https://www.cnblogs.com/chrrydot/p/9800603.html

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