Python random choice() 函数
choice() 方法返回一个列表,元组或字符串的随机项。
Python random choice() 语法
以下是 choice() 方法的语法:
import random
random.choice( seq )
注意:choice()是不能直接访问的,需要导入 random 模块,然后通过 random 静态对象调用该方法。
Python random choice() 参数
- seq : 可以是一个列表,元组或字符串。
Python random choice() 返回值
返回随机项。
Python random choice() 示例1
以下展示了使用 choice() 方法的实例:
#!/usr/bin/python3
import random
print ("Return a random number from range(100) : ",random.choice(range(100)))
print ("Return a random element from the list [1, 2, 3, 5, 9]) : ", random.choice([1, 2, 3, 5, 9]))
print ("Return a random character from the string 'Apidemos' : ", random.choice('Apidemos'))
输出: