新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
創(chuàng)新互聯(lián)Python教程:教你如何用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']多個字符中選取特定數(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]
網(wǎng)站欄目:創(chuàng)新互聯(lián)Python教程:教你如何用Python生成隨機數(shù)字和隨機字符串
標題來源:http://www.dlmjj.cn/article/dpsjcgj.html


咨詢
建站咨詢
