random經常使用的方法

  random.sample函數的第一個輸入參數必須爲list類型,不然會報錯。第二個參數爲從list中隨機選取的個數。例如:php import random list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] for i in range(3): slice = random.sample(list, 5) # 從list中隨機獲取5個元素,做爲一個片段
相關文章
相關標籤/搜索