Python隨機數(shù)模塊的相關模塊代碼的具體介紹
作者:佚名
本文主要介紹的是Python隨機數(shù)模塊中常見的相關模塊,其中包括隨機整數(shù),還有隨機選取0到100間的偶數(shù)的介紹,還有相關模塊的代碼的介紹。
以下的文章主要是通過 Python隨機數(shù)模塊的相關代碼來介紹Python隨機數(shù)模塊的相關模塊,你如果了解了這些相關的模塊,就會在Python隨機數(shù)模塊的實際應用中更好的運用,以下是文章的具體介紹。
隨機整數(shù):
- >>> import random
- >>> random.randint(0,99)
- 21
隨機選取0到100間的偶數(shù):
- >>> import random
- >>> random.randrange(0, 101, 2)
- 42
隨機浮點數(shù):
- >>> import random
- >>> random.random()
- 0.85415370477785668
- >>> random.uniform(1, 10)
- 5.4221167969800881
隨機字符:
- >>> import random
- >>> random.choice('abcdefg&#%^*f')
- 'd'
多個字符中選取特定數(shù)量的字符:
- >>> import random
- random.sample('abcdefghij',3)
- ['a', 'd', 'b']
Python隨機數(shù)模塊中多個字符中選取特定數(shù)量的字符組成新字符串:
- >>> 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]
以上的文章就是對 Python隨機數(shù)模塊的相關的模塊的介紹。
【編輯推薦】
責任編輯:佚名
來源:
博客園