Python之random模塊和time模塊
阿新 • • 發佈:2019-04-25
小時 shuffle randint ftime choice 名稱 lee tool port
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 當前時區的名稱
%% %號本身
Python之random模塊和time模塊