標籤:python random
構造隨機是程式中常用的功能,Python內建了這方面的支援,簡潔又高效。這篇部落客要記錄一下Random中常用的幾個函數功能。
random.random()
:返回一個零到一之間左閉右開的浮點數。
Return the next random floating point number in the range [0.0, 1.0).
random.uniform(a, b)
:返回a到b之間的一個浮點數。
Return a random floating point number N such that a <= N <= b for a <= b and b <= N <= a for b < a.
實現方式:a + (b-a) * random()
random.randint(a, b)
:返回a到b之間的整數,包括a和b。
Return a random integer N such that a <= N <= b. Alias for randrange(a, b+1).
random.choice(seq)
: 返回序列seq中的一個隨機元素,如果序列為空白,則會報錯。
Return a random element from the non-empty sequence seq. If seq is empty, raises IndexError.
random.randrange(stop) ,random.randrange(start, stop[, step])
: 等同於choice(range(start, stop, step))。但不會建立range對象。
Return a randomly selected element from range(start, stop, step). This is equivalent to choice(range(start, stop, step)), but doesn’t actually build a range object.
random.sample(population, k)
: 返回一個列表,為population中前K個元素的亂序。
Return a k length list of unique elements chosen from the population sequence or set. Used for random sampling without replacement.
random.shuffle(x[, random])
: 本身沒有傳回值,作用為將x中的元素打亂。
Shuffle the sequence x in place. The optional argument random is a 0-argument function returning a random float in [0.0, 1.0); by default, this is the function random().
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
Python Random模組