time模組 random模組

2022-07-27 03:09:08 字數 1352 閱讀 4910

匯入模組的時候,優先到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())

#顯示的時間更符合我們要求

import random

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

random模組time模組

import time time.time 從1970年到現在,一共過了多少秒 一般這麼用 t1 time.time code running time to be count t2 time.time total t2 t1 time.strftime y 2020 年 time.strftime...

random模組與time包

名稱 說明random 隨機time 時間import random x random.random y random.random print x,100 y 0.22526585028408974 90.33529228969773import random m random.randint 0...

Python之random模組和time模組

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 之間...