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
Charlotte's Web
E. B. White / Scholastic / 2004 / USD 0.01
This is the tale of how a little girl named Ferm, with the help of a friendly spider, saved her pig, Wilbur, from the usual fate of nice fat little pigs.一起来看看 《Charlotte's Web》 这本书的介绍吧!