Python - 从数组中获取9个随机单词

时间:2015-03-11 12:48:45

标签: arrays

我有和包含10个单词的数组,我需要取出9个不一样的单词;并将它们放入另一个数组中。 数组: array = [“night”,“smoke”,“ghost”,“tooth”,“about”,“camel”,“brown”,“funny”,“chair”,“price”] 8位swog swig

1 个答案:

答案 0 :(得分:1)

import random

array = ["night", "smoke", "ghost", "tooth", "about", "camel", "brown", "funny", "chair", "price"]
new_array = random.sample(array, 9)

P.S。

列表不是数组。 Python有内置数组,但它们很少使用。