Python Random模組

來源:互聯網
上載者:User

標籤: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模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.