常用模块

Posted lovezwfjc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用模块相关的知识,希望对你有一定的参考价值。

random模块(随机数模块)

random.random          取0-1之间的小数

random.uniform          取1-2之间的小数

random.randint(1,2)     [1,2]           

random.randrange(1,2)     [1,2)

random.randrange(1,200,2)     跟range功能一样

random.choice(list)             从列表中随机抽取值

random.sample(list,num)    从列表中抽取几个值

random.shuffle(list)             把列表的顺序打乱 ,洗牌

随机验证码:

技术分享图片

发红包

技术分享图片

 

 

time模块(时间模块)

time.sleep(s)         程序走到这停了s秒

时间格式

‘2018-8-20‘    ‘2018.8.20‘     字符串数据类型(格式化时间)

 

以上是关于常用模块的主要内容,如果未能解决你的问题,请参考以下文章

Python——常用模块

ansible使用笔记(二)常用命令使用及常用模块简介

常用模块

python常用模块

常用模块知识

python中常用的模块1