random.choice(seq)

简介: random.choice(seq)
  1. random.choice(seq):从序列中随机选择一个元素
    例子:
import random
fruits = ["apple", "banana", "orange"]
fruit = random.choice(fruits)
print(fruit)


相关文章
|
4月前
tf.random
【8月更文挑战第12天】tf.random。
47 3
|
6月前
|
数据采集 Python
【随手记】np.random.choice()函数
【随手记】np.random.choice()函数
149 0
|
7月前
random.random()
random.random()
67 1
|
7月前
random.randint(a, b)
random.randint(a, b)
67 1
|
7月前
|
安全
secrets.choice(seq)
secrets.choice(seq)
39 0
|
7月前
numpy.random.rand(d0, d1, …, dn)
numpy.random.rand(d0, d1, …, dn)
45 0
|
Python
Python random 随机函数(random、uniform、randint、choice、choices、randrange、shuffle、sample)
Python random 随机函数(random、uniform、randint、choice、choices、randrange、shuffle、sample)
145 0
np.random.choice 参数replace
np.random.choice 参数replace
137 0
|
Java
Random rand = new Random(47);的简单解释
Random rand = new Random(47);的简单解释
335 0