码迷,mamicode.com
首页 > 编程语言 > 详细

python中的列表与列表推导式

时间:2018-06-23 21:09:22      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:.sh   list   列表   shuf   import   shuff   random   port   src   

>>> x = list(range(10))                         #创建列表
>>> print(x)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> import random
>>> random.shuffle(x)                        #把列表中的元素打乱顺序
>>> x
[4, 0, 2, 7, 3, 9, 1, 6, 8, 5]

>>> x[2]
2
>>> x[-1]                                            #访问最后一个元素
5
>>> x[-2]
8
技术分享图片

 

python中的列表与列表推导式

标签:.sh   list   列表   shuf   import   shuff   random   port   src   

原文地址:https://www.cnblogs.com/zhn620/p/9218411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!