Python randrange() 函數(shù)
python randrange() 函數(shù)
randrange() 方法返回指定遞增基數(shù)集合中的一個(gè)隨機(jī)數(shù),基數(shù)默認(rèn)值為1。
1. 語(yǔ)法
以下是 randrange() 方法的語(yǔ)法:
import random random.randrange ([start,] stop [,step])
注意:randrange()是不能直接訪問(wèn)的,需要導(dǎo)入 random 模塊,然后通過(guò) random 靜態(tài)對(duì)象調(diào)用該方法。
2. 參數(shù)
- start -- 指定范圍內(nèi)的開始值,包含在范圍內(nèi)。
- stop -- 指定范圍內(nèi)的結(jié)束值,不包含在范圍內(nèi)。
- step -- 指定遞增基數(shù)。
3. 返回值
從給定的范圍返回隨機(jī)項(xiàng)。
4. 實(shí)例
以下展示了使用 randrange() 方法的實(shí)例:
#!/usr/bin/python import random # 輸出 100 <= number < 1000 間的偶數(shù) print "randrange(100, 1000, 2) : ", random.randrange(100, 1000, 2) # 輸出 100 <= number < 1000 間的其他數(shù) print "randrange(100, 1000, 3) : ", random.randrange(100, 1000, 3)
以上實(shí)例運(yùn)行后輸出結(jié)果為:
randrange(100, 1000, 2) : 976 randrange(100, 1000, 3) : 520
相關(guān)文章
- Python 簡(jiǎn)介
- Python 中文編碼
- Python 運(yùn)算符
- Python for 循環(huán)語(yǔ)句
- Python Number 數(shù)字
- Python 字符串
- Python 列表 List
- Python 元組
- Python 字典 Dictionary
- Python 函數(shù)
- Python 正則表達(dá)式
- Python GUI編程 Tkinter
- Python 堆
- Python 算法設(shè)計(jì)
- Python 分而治之
- Python 回溯
- Python 搜索算法
- Python3 注釋
- Python3 列表(List)
- Python3 多線程