Python的random模塊提供了一系列生成隨機數(shù)的函數(shù)。下面是一些常用的random函數(shù)的示例用法:
import random
# 生成一個0到9的隨機整數(shù)
num = random.randint(0, 9)
print(num)
import random
# 生成一個0到1之間的隨機浮點數(shù)
num = random.random()
print(num)
import random
# 從列表中隨機選擇一個元素
fruits = ['apple', 'banana', 'orange']
fruit = random.choice(fruits)
print(fruit)
import random
# 打亂列表中的元素順序
fruits = ['apple', 'banana', 'orange']
random.shuffle(fruits)
print(fruits)
import random
import string
# 生成一個由10個隨機字符組成的密碼
password = ''.join(random.choices(string.ascii_letters + string.digits, k=10))
print(password)
這些只是random模塊的一小部分功能,你可以查閱Python官方文檔以獲取更多詳細的信息和示例。