random.shuffle(x[,random])
Shuffle the sequence
x
in place. The optional argument random is a 0-argument function returning a random float in[0.0,1.0)
; by default,this is the functionrandom()
.Note that for even rather small
len(x)
,the total number of permutations ofx
is larger than the period of most random number generators; this implIEs that most permutations of a long sequence can never be generated.
如果我想重复获得[‘a’…’k’]的随机排列,似乎随机播放不会给我随机性.我的理解是对的吗?
谢谢!
解决方法 You don’t have anything to worry about.在len(x)下,2000年以下,random.shuffle应该可以正常工作. 总结以上是内存溢出为你收集整理的python random.shuffle的随机性全部内容,希望文章能够帮你解决python random.shuffle的随机性所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)