以下是 choice() 函数的语法:
import random
random.choice(seq)
参数 seq 是一个非空的序列(如列表、元组、字符串等),表示从中进行随机选择的序列。
下面是一些示例:
import random
# 从列表中随机选择一个元素
my_list = [1, 2, 3, 4, 5]
result = random.choice(my_list)
print(result)
# 从字符串中随机选择一个字符
my_string = "hello"
result = random.choice(my_string)
print(result)
在这些示例中,random.choice() 函数分别从列表和字符串中随机选择一个元素。请注意,如果序列为空,choice() 函数会引发 IndexError 异常。
这个函数在需要从一组元素中随机选择一个时非常有用,例如在编写简单的游戏或进行随机抽样时。
转载请注明出处:http://www.zyzy.cn/article/detail/286/Python3