码迷,mamicode.com
首页 > 编程语言 > 详细

python中常用的模块

时间:2018-08-13 12:11:18      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:step   int   rand   bsp   shuffle   有序   顺序   choice   .sh   


ramdom随机模块

用法:

random.random() 返回[0,1)的随机数

random.uniform(a, b) 返回[a, b]的随机数,a和b可以无序

random.randint(a, b)  返回[a, b]的整数,a和b必须有序a<=b

random.randrange([start=0], stop, [step])  返回[start, stop)之间的整数,step表示步长

random.choice(str)  返回字符串某个字符或列表的某个元素

random.shuffle(list) 将list序列顺序打乱

random.sample(list, num)  返回获取list的num个随机元素组成的新列表


 

python中常用的模块

标签:step   int   rand   bsp   shuffle   有序   顺序   choice   .sh   

原文地址:https://www.cnblogs.com/Cony365/p/9466799.html

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