目录
文章所属专区 Python学习
本章节主要说明Python的列表List。
创建一个列表 通过方括号和逗号分割创建,列表数据项中不需要有相同的类型
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = ["a", "b", "c", "d"]
使用下标索引来访问列表中的值
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5, 6, 7 ]
print "list1[0]: ", list1[0]
print "list2[1:5]: ", list2[1:5]
#!/usr/bin/python
# -*- coding: UTF-8 -*-
list = [] ## 空列表
list.append('Google') ## 使用 append() 添加元素
list.append('Runoob')
print list #['Google', 'Runoob']
del list[0] #['Runoob']
print list
>>>L = ['Google', 'Runoob', 'Taobao']
>>> L[2] #读取列表第三个元素
'Taobao'
>>> L[-2]#读取列表倒数第二个元素
'Runoob'
>>> L[1:] #从第二个元素开始截取列表
['Runoob', 'Taobao']
>>>
给个三连吧 谢谢谢谢谢谢了