Python之random模塊和time模塊

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()將一個列表內的元素打亂
 

以上程序輸出結果:dom

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()
 

以上程序的輸出結果:post

 
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)ui

%Y 四位數的年份表示(000-9999)spa

%m 月份(01-12)code

%d 月內中的一天(0-31)blog

%H 24小時制小時數(0-23)字符串

%I 12小時制小時數(01-12)class

%M 分鐘數(00=59)import

%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 當前時區的名稱

%% %號自己

相關文章
相關標籤/搜索