Python中的列表类似于C语言中的数组,下面通过实例说明介绍几种常用的使用方法。
1.空列表的创建
>>> empty=[]
>>> print(empty)
[]
2.列表中元素的查看
>>> words=["a","b","c"]
>>> print(words[2])
c
>>> print(words[3])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: list index out of range
3.列表的修改
>>> words=["a",'b',1,2,'3']
>>> words[0]=0
>>> print