import randomx = 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.85308716274883284 a
[15, 6, 12, 5, 16]
[6, 9, 2, 4, 1, 5]
import timefor 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()
以上程式的輸出結果:
hellohello
sat nov 3 12:18:38 2018
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)
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 當前時區的名稱
%% %號本身
import randomx = 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.85308716274883284 a
[15, 6, 12, 5, 16]
[6, 9, 2, 4, 1, 5]
import timefor 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()
以上程式的輸出結果:
hellohello
sat nov 3 12:18:38 2018
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)
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模組
import random print random.random 隨機 0 1 浮點數 print random.uniform 1,10 隨機指定範圍的浮點數 print random.randint 1,3 隨機整數1 3,包括3 print random.randrange 1,3 1 3隨...
Python之random模組筆記
一 匯入模組 import random二 random模組功能介紹 1 random.random 用於生成0 1的隨機浮點數,0 n 1.0 import random a random.random print a 2 random.uniform a,b 用於生成指定範圍內的隨機浮點數,其中...
python入門之random模組
usr bin env python encoding utf 8 import random print random.random 生成乙個在0到1之間的隨機浮點數 print random.randint 1,9 生成乙個在1到9之間的隨機整數,包含1和9 print random.randr...