您好,登錄后才能下訂單哦!
怎么在Python中使用random.shuffle()函數打亂列表順序?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
random.shuffle()方法提供了完美的解決方案。
不會生成新的列表,只是將原列表的次序打亂
# shuffle()使用樣例 import random x = [i for i in range(10)] print(x) random.shuffle(x) print(x)
源碼及注釋(個人翻譯注釋)
def shuffle(self, x, random=None): """Shuffle list x in place, and return None. 原位打亂列表,不生成新的列表。 Optional argument random is a 0-argument function returning a random float in [0.0, 1.0); if it is the default None, the standard random.random will be used. 可選參數random是一個從0到參數的函數,返回[0.0,1.0)中的隨機浮點; 如果random是缺省值None,則將使用標準的random.random()。 """ if random is None: randbelow = self._randbelow for i in reversed(range(1, len(x))): # pick an element in x[:i+1] with which to exchange x[i] j = randbelow(i + 1) x[i], x[j] = x[j], x[i] else: _int = int for i in reversed(range(1, len(x))): # pick an element in x[:i+1] with which to exchange x[i] j = _int(random() * (i + 1)) x[i], x[j] = x[j], x[i]
random 中其他的方法
class Random(_random.Random): ## -------------------- integer methods ------------------- def randrange(self, start, stop=None, step=1, _int=int): def randint(self, a, b): def _randbelow(self, n, int=int, maxsize=1 << BPF, type=type, Method=_MethodType, BuiltinMethod=_BuiltinMethodType): ## -------------------- sequence methods ------------------- def choice(self, seq): def shuffle(self, x, random=None): def sample(self, population, k): def choices(self, population, weights=None, *, cum_weights=None, k=1): ## -------------------- uniform distribution ------------------- def uniform(self, a, b): ## -------------------- triangular -------------------- def triangular(self, low=0.0, high=1.0, mode=None): ## -------------------- normal distribution -------------------- def normalvariate(self, mu, sigma): ## -------------------- lognormal distribution -------------------- def lognormvariate(self, mu, sigma): ## -------------------- exponential distribution -------------------- def expovariate(self, lambd): ## -------------------- von Mises distribution -------------------- def vonmisesvariate(self, mu, kappa): ## -------------------- gamma distribution -------------------- def gammavariate(self, alpha, beta): ## -------------------- Gauss (faster alternative) -------------------- def gauss(self, mu, sigma): def betavariate(self, alpha, beta): ## -------------------- Pareto -------------------- def paretovariate(self, alpha): ## -------------------- Weibull -------------------- def weibullvariate(self, alpha, beta):
關于怎么在Python中使用random.shuffle()函數打亂列表順序問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。