python內建模組之random模組

2021-08-22 18:13:29 字數 622 閱讀 6080

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隨機,不包括3

print(random.choice("hello"))#從序列中隨機取1位

print(random.sample("hello",2))#從序列中隨機取2位,可自定義

l=[1,3,5,8]

random.shuffle(l)#洗牌功能,把順序打亂

print(l)

#驗證碼

import random

re=""

for i in range(5):

a=random.randint(1,10)

if a%2==0:

re+=chr(random.randrange(65,91))

else:

re+=str(random.randint(0,9))

print(re)

python內建模組之XML模組

xml和json 一樣都是可以跨平台的,只是xml相比較,老一點 import xml.etree.elementtree as et a et.parse first xml.xml 載入乙個檔案 root a.getroot print root 乙個xml檔案 print root.tag x...

python內建模組之re模組

在python要想使用正則必須借助於模組,re就是其中之一 查詢字串中所有匹配到的字元,並返回乙個列表,沒有匹配資料則返回乙個空列表 import re re.findall 正規表示式 帶匹配的文字 根據正則匹配除所有符合條件的資料 res re.findall b eva jason jacks...

python內建模組 Python 內建模組

內建模組 python有一套很有用的標準庫 standard library 標準庫會隨著python直譯器,一起安裝在你的電腦中的。它是python的 乙個組成部分。這些標準庫是python為你準備好的利器,可以讓程式設計事半功倍。常用標準庫 標準庫 說明 builtins 內建函式預設載入 os...