博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
time模块 random模块
阅读量:5066 次
发布时间:2019-06-12

本文共 1196 字,大约阅读时间需要 3 分钟。

time模块

time、sys等模块是C语言实现的,内置到了python解释器的。而不是py文件。

导入模块的时候,优先到python解释器,然后才会找py文件。

#时间戳  #计算# print(time.time())    #1481321748.481654秒#结构化时间---当地时间# print(time.localtime(1531242343))# t=time.localtime()# print(t.tm_year)# print(t.tm_wday)# #-----#结构化时间---UTC# print(time.gmtime())#-----将结构化时间转换成时间戳# print(time.mktime(time.localtime()))#------将结构化时间转成字符串时间strftime#print(time.strftime("%Y---%m-%d %X",time.localtime()))#------将字符串时间转成结构化时间strptime#print(time.strptime("2016:12:24:17:50:36","%Y:%m:%d:%X"))# print(time.asctime())# print(time.ctime())# import datetime# print(datetime.datetime.now()) #显示的时间更符合我们要求

 random模块

 

import randomret=random.random() #0-1随机浮点数  ret=random.randint(1,3)ret=random.randrange(1,3)ret=random.choice([11,22,33,44,55])ret=random.sample([11,22,33,44,55],2)#随机选两个ret=random.uniform(1,4)#1-4的随机浮点数print(ret)ret=[1,2,3,4,5]random.shuffle(ret)#打乱顺序print(ret)def v_code():    ret=""    for i in range(5):        num=random.randint(0,9)        alf=chr(random.randint(65,122))        s=str(random.choice([num,alf]))        ret+=s    return retprint(v_code())

 

 

 

原文地址:https://www.cnblogs.com/yuanchenqi/articles/5732581.html

转载于:https://www.cnblogs.com/jiawen010/p/9811701.html

你可能感兴趣的文章
堆排序
查看>>
PHP 获取JSON json_decode返回NULL解决办法
查看>>
谈谈cookie的弊端
查看>>
Linux有问必答:如何检查Linux的内存使用状况
查看>>
深入理解jvm
查看>>
下载android4.4.2源代码全过程(附已下载的源代码)
查看>>
(原创)机器学习之numpy库中常用的函数介绍(一)
查看>>
Android HttpURLConnection Post 参数 (https)
查看>>
我的软件工程课程目标
查看>>
数据库中触发器、事务
查看>>
关于JAVA并发编程你需要知道的——硬件篇
查看>>
数据分析师发展之路
查看>>
stream的filter用法
查看>>
条款25 :尽可能延后变量定义式的出现时间
查看>>
C#中Thread.IsBackground 属性
查看>>
Python的DEBUG LOG
查看>>
HTTP中get、post请求工具类
查看>>
Android MVP模式就是这么回事儿
查看>>
我的第一个可用的Windows驱动完成了
查看>>
搭建一个自己的SVN服务器
查看>>