1.random()模块的使用
import random x = random.random() y = random.random() print(x,y*10) #random.random()随机生成一个[0,1)之间的随机数 m = random.randint(0,10) print(m) #random.randint()随机生成一个[0:10]之间的整数 st1 = random.choice(list(range(10))) st2 = random.choice('adadfaifhasui') print(st1,st2) lst= list(range(20)) sli = random.sample(lst,5) print(sli) #random.sample(a,b)随机获取a中指定b长度的片段 lst = [1,2,4,5,6,9] random.shuffle(lst) print(lst) #random.shuffle()将一个列表内的元素打乱
以上程序输出结果:
0.7595010075157713 4.853087162748832 8 4 a [15, 6, 12, 5, 16] [6, 9, 2, 4, 1, 5]
2.time模块的使用
import time for i in range(2): print("hello") time.sleep(1) #每隔1秒输出hello,输出两遍 #time.sleep(1)程序休息1秒 print(time.ctime()) print(type(time.ctime())) #将当前时间转化为一个字符串 print(time.localtime()) print(type(time.localtime())) #将当前时间转化为当前时区的struct_time #wday 0-6表示周一到周日 #yday 1-366 一年中的第几天 #isdst 是否为夏令时 默认为-1 print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime())) #time.strftime(a,b) #a为格式化字符串格式 #b为时间戳,一般用localtime()
以上程序的输出结果:
hello hello Sat Nov 3 12:18:38 2018 <class 'str'> time.struct_time(tm_year=2018, tm_mon=11, tm_mday=3, tm_hour=12, tm_min=18, tm_sec=38, tm_wday=5, tm_yday=307, tm_isdst=0) <class 'time.struct_time'> 2018-11-03 12:18:38
%y 两位数的年份表示(00-99)
%Y 四位数的年份表示(000-9999)
%m 月份(01-12)
%d 月内中的一天(0-31)
%H 24小时制小时数(0-23)
%I 12小时制小时数(01-12)
%M 分钟数(00=59)
%S 秒(00-59)
%a 本地简化星期名称
%A 本地完整星期名称
%b 本地简化的月份名称
%B 本地完整的月份名称
%c 本地相应的日期表示和时间表示
%j 年内的一天(001-366)
%p 本地A.M.或P.M.的等价符
%U 一年中的星期数(00-53)星期天为星期的开始
%w 星期(0-6),星期天为星期的开始
%W 一年中的星期数(00-53)星期一为星期的开始
%x 本地相应的日期表示
%X 本地相应的时间表示
%Z 当前时区的名称
%% %号本身