random函数是Python标准库中的一个模块,可以用于生成伪随机数。它提供了一系列的函数来生成随机数,以及操作随机数的方法。
下面是random模块中常用的几个函数的用法:
import random
num = random.random()
print(num)
import random
num = random.randint(1, 100)
print(num)
import random
choices = ['apple', 'banana', 'orange']
fruit = random.choice(choices)
print(fruit)
import random
numbers = [1, 2, 3, 4, 5]
random.shuffle(numbers)
print(numbers)
import random
numbers = [1, 2, 3, 4, 5]
selected = random.sample(numbers, 3)
print(selected)
这些只是random模块提供的一小部分函数,还有其他更多的函数可以用于生成不同类型的随机数。