random模組與time包

2021-10-06 13:24:14 字數 3212 閱讀 4922

名稱

說明random

隨機time

時間

import random

x = random.random(

)y = random.random(

)print

(x,100

*y)---

----

----

----

----

----

0.22526585028408974

90.33529228969773

import random

m = random.randint(0,

100)

print

(m)---

----

----

----

----

----

----

----

--13lst =

list

(range

(100))

s = random.choice(lst)

print

(s)_---

----

----

----

----

----

98

#匯入random模組

import random

#建立隨機數列

lst =

list

(range

(100))

#從列表中取隨機列表

sli = random.sample(lst,5)

print

(sli)--

----

----

----

----

--[33

,48,52

,46,58

]

import random

lst =

list

(range

(100))

random.shuffle(lst)

print

(lst)--

----

----

----

----

----

----

----

[44,47

,22,81

,85,5

,51,55

,93,3

,91,31

,20,35

,70,57

,86,98

,79,46

,26,18

,6,87

,10,94

,16,13

,56,39

,76,58

,89,90

,78,41

,42,73

,24,14

,50,21

,27,23

,68,69

,29,8

,72,43

,75,48

,53,59

,66,95

,45,7

,88,33

,80,74

,54,64

,2,0

,11,36

,30,32

,71,38

,92,96

,77,97

,99,82

,12,62

,60,17

,63,28

,40,37

,25,34

,67,9

,65,49

,52,1

,83,15

,84,4

,19,61

]

# time模組

import time

for i in

range(3

):print

("hello"

)# 程式休息1s後繼續執行

# time.sleep(1)

# 輸出當前時間

print

(time.ctime())

print

(type

(time.ctime())

)# 用時間圖示格式 輸出當前時間

print

(time.localtime())

print

(type

(time.localtime())

)# 將當前的時間轉為當前時區的 struct_time

# wday 0-6表示週日到週六

# ydat 1-366 一年中的第幾天

# sidast 是否為夏令時,預設為 -1

#將圖示形式的轉換成字串形式的視覺化

print

(time.strftime(

"%y-%m-%d %h:%m:%s"

,time.localtime())

)print

(type

(time.strftime(

"%y-%m-%d %h:%m:%s"

,time.localtime())

))# time.strftme(a,b)

# a為格式化字串格式

# b為時間戳,一般用localtime()

====

====

====

====

====

==hello

hello

hello

wed may 2715:

24:322020

<

class

'str'

>

time.struct_time(tm_year=

2020

, tm_mon=

5, tm_mday=

27, tm_hour=

15, tm_min=

24, tm_sec=

32, tm_wday=

2, tm_yday=

148, tm_isdst=0)

<

class

'time.struct_time'

>

2020-05

-2715:

24:32<

class

'str'

>

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

time模組 random模組

匯入模組的時候,優先到python直譯器,然後才會找py檔案。時間戳 計算 print time.time 1481321748.481654秒 結構化時間 當地時間 print time.localtime 1531242343 t time.localtime print t.tm year p...

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