python-random模塊
阿新 • • 發佈:2018-07-01
list shuffle sci rst randint git pytho per rand
import random
>>> random.randrange(1,10) #返回1-10之間的一個隨機數,不包括10 >>> random.randint(1,10) #返回1-10之間的一個隨機數,包括10 >>> random.randrange(0, 100, 2) #隨機選取0到100間的偶數 >>> random.random() #返回一個隨機浮點數 >>> random.choice(‘abce3#$@1‘) #返回一個給定數據集合中的隨機字符 ‘#‘ >>> random.sample(‘abcdefghij‘,3) #從多個字符中選取特定數量的字符 [‘a‘, ‘d‘, ‘b‘]
import string
>>> string.ascii_letters
‘abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ‘
>>> string.digits
‘0123456789‘
>>> string.ascii_lowercase
‘abcdefghijklmnopqrstuvwxyz‘
>>> string.ascii_uppercase
‘ABCDEFGHIJKLMNOPQRSTUVWXYZ‘
生成隨機字符串
>>> import string
>>> ‘‘.join(random.sample(string.ascii_lowercase+string.digits,5))
‘l1r0p‘
>>> ‘‘.join(random.sample(string.ascii_lowercase+string.digits,5))
‘8vm42‘
洗牌
>>> a =list(range(10))
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> random.shuffle(a)
>>> a
[1 , 0, 4, 8, 3, 6, 9, 5, 7, 2]
>>>
python-random模塊