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

python列表

时间:2017-11-06 21:21:12      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:traceback   cal   变量   err   ffffff   module   apple   call   class   

1.创建列表:
    列表中的项总是用  [] 括住。

    创建列表 fruit = [‘apple‘,‘pear‘,‘papaya‘]

    创建空列表 fruit = []

    列表中一个项的位置叫做索引,如果想要获取列表中的某一项,需要提供索引的编号【索引从0开始】,如 fruit[0];

    如果使用一个超过最大索引的索引编号,python将抛出一个错误,并且程序停止运行,错误信息如下:

     Traceback (most recent call last):
     File "<pyshell#1>", line 1, in <module>
    fruit[3]
    IndexError: list index out of range

    通过变量创建列表:

>>> fruit1 = apple
>>> fruit2 = pear
>>> fruit_list = [fruit1,fruit2]
>>> fruit_list
[apple, pear]
>>> fruit1 = grapes
>>> fruit_list
[apple, pear]
>>>

使用变量来创建列表,如果修改最初的变量,则列表中的值不会变(保存在列表中的,只是变量中的内容的一个副本)

 

python列表

标签:traceback   cal   变量   err   ffffff   module   apple   call   class   

原文地址:http://www.cnblogs.com/980704347LL/p/7794965.html

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