Python shuffle() 函数
Python 教程
· 2019-02-02 06:26:30
描述
shuffle() 方法将序列的所有元素随机排序。
语法
以下是 shuffle() 方法的语法:
import random random.shuffle (lst )
注意:shuffle()是不能直接访问的,需要导入 random 模块,然后通过 random 静态对象调用该方法。
参数
- lst -- 可以是一个序列或者元组。
返回值
该函数没有返回值。
实例
以下展示了使用 shuffle() 方法的实例:
#!/usr/bin/python # -*- coding: UTF-8 -*- import random list = [20, 16, 10, 5]; random.shuffle(list) print "随机排序列表 : ", list random.shuffle(list) print "随机排序列表 : ", list
以上实例运行后输出结果为:
随机排序列表 : [16, 5, 10, 20] 随机排序列表 : [16, 5, 20, 10]
点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html
Elements of Information Theory
Thomas M. Cover、Joy A. Thomas / Wiley-Blackwell / 2006-7 / GBP 76.50
The latest edition of this classic is updated with new problem sets and material The Second Edition of this fundamental textbook maintains the book's tradition of clear, thought-provoking instr......一起来看看 《Elements of Information Theory》 这本书的介绍吧!