Python 3 – Number choice() 方法
描述
choice() 方法从列表、元组或字符串中返回一个随机项。
句法
choice() 方法的句法如下:
choice( seq )
注意 − 此函数不可直接访问,因此需导入random模块,然后使用静态对象 random 调用此函数。
参数
seq − 这可以是一个列表、元组或字符串。
返回值
此方法返回一个随机项。
示例
以下示例展示了 choice() 方法的用法。
#!/usr/bin/python3
import random
print ("从range(100) 返回一个随机数 : ",random.choice(range(100)))
print ("从列表[1, 2, 3, 5, 9] 返回一个随机元素 : ", random.choice([1, 2, 3, 5, 9]))
print ("从字符串 'Hello World' 返回一个随机字符 : ", random.choice('Hello World'))
输出
当我们运行以上程序时,它会产生类似下面的结果−
从range(100) 返回一个随机数 : 19
从列表[1, 2, 3, 5, 9] 返回一个随机元素 : 9
从字符串 'Hello World' 返回一个随机字符 : r