#时间模块
import time import datetime
print(datetime.datetime.now())
#时间戳
print(time.time())
#将时间戳转化为结构化时间
print(time.localtime(time.time()))
#将结构化时间转化为时间戳
print(time.mktime(time.localtime()))
#将结构化时间转化为字符串时间
strftime print(time.strftime("%Y---%m-%d %X",time.localtime()))
#将字符串时间转化为结构化时间
strptime print(time.strptime("2013:12:23:17:56:12","%Y:%m:%d:%X"))
#直接看时间,固定格式
print(time.asctime()) print(time.ctime())
time.sleep(3)
#随机模块
import random
#随机浮点型
re=random.random() #[0-1]浮点型
re5=random.uniform(12,14) #取任意范围的浮点型
print(re)
print(re5)
#随机整形
re1=random.randint(1,3) #[1-3]取
re2=random.randrange(1,3) #[1-3)取
print(re1,re2)
#随机选取
re3=random.choice([1,2,3,3,4,3,13]) #只能随机选一个数
re4=random.sample([2,3,4,2,2,22,2334,22,22,45],2) #随机选取两个数
print(re3)
print(re4)
#随机打乱次序
re6=[345,434,213,1,3,5,3,2,43,24,24,24,24,5,654,45,42,235,45]
random.shuffle(re6) #无返回值
print(re6)
#随机验整码
def V_code(): ret="" for i in range(5): num=random.randint(0,9) alf=chr(random.randint(65,122)) s=random.choice([num,alf]) ret+=str(s) print(ret) if __name__=="__main__": V_code()
原文地址:https://www.cnblogs.com/lujiacheng-Python/p/9684195.html