标签: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‘] >>>
使用变量来创建列表,如果修改最初的变量,则列表中的值不会变(保存在列表中的,只是变量中的内容的一个副本)
标签:traceback cal 变量 err ffffff module apple call class
原文地址:http://www.cnblogs.com/980704347LL/p/7794965.html