Python常用隨機數與隨機字串方法執行個體_python

來源:互聯網
上載者:User

隨機整數:

複製代碼 代碼如下:

>>> import random
>>> random.randint(0,99)
21

隨機選取0到100間的偶數:
複製代碼 代碼如下:

>>> import random
>>> random.randrange(0, 101, 2)
42

隨機浮點數:
複製代碼 代碼如下:

>>> import random
>>> random.random()
0.85415370477785668
>>> random.uniform(1, 10)
5.4221167969800881

隨機字元:
複製代碼 代碼如下:

>>> import random
>>> random.choice('abcdefg&#%^*f')
'd'

多個字元中選取特定數量的字元:
複製代碼 代碼如下:

>>> import random
random.sample('abcdefghij',3)
['a', 'd', 'b']

多個字元中選取特定數量的字元組成新字串:
複製代碼 代碼如下:

>>> import random
>>> import string
>>> string.join(random.sample(['a','b','c','d','e','f','g','h','i','j'], 3)).r
eplace(" ","")
'fih'

隨機選取字串:
複製代碼 代碼如下:

>>> import random
>>> random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] )
'lemon'

洗牌:
複製代碼 代碼如下:

>>> import random
>>> items = [1, 2, 3, 4, 5, 6]
>>> random.shuffle(items)
>>> items
[3, 2, 5, 6, 4, 1]

random的函數還有很多,此處不一一列舉,
參考資料: http://docs.python.org/lib/module-random.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.