我有和包含10个单词的数组,我需要取出9个不一样的单词;并将它们放入另一个数组中。 数组: array = [“night”,“smoke”,“ghost”,“tooth”,“about”,“camel”,“brown”,“funny”,“chair”,“price”] 8位swog swig
答案 0 :(得分:1)
import random
array = ["night", "smoke", "ghost", "tooth", "about", "camel", "brown", "funny", "chair", "price"]
new_array = random.sample(array, 9)
P.S。
列表不是数组。 Python有内置数组,但它们很少使用。