Python模塊之random

import random

print(random.randrange(1, 10))  # 返回1-10之間的一個隨機數,不包括10

print(random.randint(1, 10))  # 返回1-10之間的隨機數,包括10

print(random.random())  # 生成0-1的隨機數,隨機浮點數

print(random.choice('hello word!'))  # 隨機選取字符串中的一個字符
print(random.choices('hello word!'))  # 隨機選取字符串中的一個字符,以列表形式返回

print(random.sample('hello word', 3))  # 從多個字符中選出特定數量的字符,以列表形式返回

lis = [1, 2, 3, 4, 5, 6, 7]
random.shuffle(lis)  # 洗牌,將列表內容隨機打亂
print(lis)

import string

# 生成隨機字符串
s = ''.join(random.sample(string.ascii_lowercase + string.digits, 6))
print(s)


結果:
    5
    1
    0.1861546218534702
    r
    ['w']
    ['h', 'w', 'r']
    [7, 5, 3, 2, 4, 1, 6]
    y9qxeo
相關文章
相關標籤/搜索