python第三方庫的安裝
PyInstaller庫
PyInstaller庫能夠在不同操作系統(tǒng)下將python源文件打包,變成直接可運(yùn)行的可執(zhí)行文件。
可以通過—F參數(shù)對python源文件生成一個(gè)獨(dú)立的可執(zhí)行文件。
PyInstaller -F SnowView.py
執(zhí)行后在dist目錄中出現(xiàn)了SnowView.exe可執(zhí)行文件。
random庫
使用random庫來生成隨機(jī)數(shù)
最基本 random.random() 生成一個(gè)0~1之間的隨機(jī)小數(shù)
from random import *
print(random())
0.02407647202090879
random.seed()函數(shù)
初始化隨機(jī)數(shù)種子,隨機(jī)數(shù)是隨機(jī)取得,如果想要復(fù)現(xiàn)生成的隨機(jī)數(shù)的話需要設(shè)置隨機(jī)數(shù)種子。
from random import *
seed(10)
print(random())
print(random())
seed(10)
print(random())
print(random())
0.5714025946899135
0.4288890546751146
0.5714025946899135
0.4288890546751146
random.randint()函數(shù)
生成一個(gè)[a,b)之間的隨機(jī)整數(shù)
from random import *
print(randint(1,5))
random.uniform(a,b)函數(shù)
生成一個(gè)[a,b]之間的隨機(jī)小數(shù)
from random import *
print(uniform(1,5))
3.5783611261343165
random.shuffle()函數(shù)
將序列元素的順序打亂后返回
from random import *
a = [1,2,3,4]
shuffle(a)
print(a)
[1, 2, 4, 3]
random.choice()函數(shù)
隨機(jī)選擇列表中的一個(gè)元素返回
from random import *
a = [1,2,3,4]
print(choice(a))
3
random.sample(k,a)函數(shù)
從類型k中隨機(jī)選取a個(gè)元素,并以列表形式返回。
from random import *
a = [1,2,3,4]
print(sample(a,3))
[2, 1, 4]
到此這篇關(guān)于python第三方庫的安裝、PyInstaller庫、random庫的文章就介紹到這了,更多相關(guān)python第三方庫的安裝內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- 教你使用pyinstaller打包Python教程
- 如何利用pyinstaller打包Python程序?yàn)閑xe可執(zhí)行文件
- python3.9實(shí)現(xiàn)pyinstaller打包python文件成exe
- python 利用Pyinstaller打包Web項(xiàng)目
- python之pyinstaller組件打包命令和異常解析實(shí)戰(zhàn)