Python seed() 函數(shù)
python seed() 函數(shù)
seed() 方法改變隨機(jī)數(shù)生成器的種子,可以在調(diào)用其他隨機(jī)模塊函數(shù)之前調(diào)用此函數(shù)。
1. 語法
以下是 seed() 方法的語法:
import random random.seed ( [x] )
我們調(diào)用 random.random() 生成隨機(jī)數(shù)時,每一次生成的數(shù)都是隨機(jī)的。但是,當(dāng)我們預(yù)先使用 random.seed(x) 設(shè)定好種子之后,其中的 x 可以是任意數(shù)字,如10,這個時候,先調(diào)用它的情況下,使用 random() 生成的隨機(jī)數(shù)將會是同一個。
注意:seed()是不能直接訪問的,需要導(dǎo)入 random 模塊,然后通過 random 靜態(tài)對象調(diào)用該方法。
2. 參數(shù)
- x -- 改變隨機(jī)數(shù)生成器的種子 seed。如果你不了解其原理,你不必特別去設(shè)定 seed,python會幫你選擇 seed。
3. 返回值
本函數(shù)沒有返回值。
4. 實例
以下展示了使用 seed() 方法的實例:
#!/usr/bin/python # -*- coding: utf-8 -*- import random print random.random() print random.random() print "------- 設(shè)置種子 seed -------" random.seed( 10 ) print "random number with seed 10 : ", random.random() # 生成同一個隨機(jī)數(shù) random.seed( 10 ) print "random number with seed 10 : ", random.random() # 生成同一個隨機(jī)數(shù) random.seed( 10 ) print "random number with seed 10 : ", random.random()
以上實例運(yùn)行后輸出結(jié)果為:
0.739880443211 0.78969784712 ------- 設(shè)置種子 seed ------- random number with seed 10 : 0.57140259469 random number with seed 10 : 0.57140259469 random number with seed 10 : 0.57140259469
相關(guān)文章
- Python while 循環(huán)語句
- Python Number 數(shù)字
- Python 字符串
- Python 模塊
- Python 文件I/O
- Python CGI編程
- Python 網(wǎng)絡(luò)編程
- Python2 與 Python3?? 版本區(qū)別
- Python IDE
- Python JSON
- Python 環(huán)境
- Python 詞典
- Python 二維數(shù)組
- Python Deque
- Python 二叉樹
- Python 搜索樹
- Python 圖形
- Python 算法設(shè)計
- Python3 網(wǎng)絡(luò)編程
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動