python 语言教程列表常用方法
Posted thefist11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 语言教程列表常用方法相关的知识,希望对你有一定的参考价值。
1. 创建一个列表
list1 = [‘physics’, ‘chemistry’, 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = [“a”, “b”, “c”, “d”]
列表可以进行截取、组合等
2. 访问列表中的值
使用下标索引来访问列表中的值,同样你也可以使用方括号的形式截取字符。
eg.
实例(Python 2.0+)
#!/usr/bin/python
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]
输出结果
list1[0]: physics
list2[1:5]: [2, 3, 4, 5]
3. 更新列表
可以对列表的数据项进行修改或更新。
append():添加列表项。
eg.
实例(Python 2.0+)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
list = [] ## 空列表
list.append('Google') ## 使用 append() 添加元素
list.append('Runoob')
print list
输出结果:
['Google', 'Runoob']
4. 删除列表元素: del
eg.
实例(Python 2.0+)
#!/usr/bin/python
list1 = ['physics', 'chemistry', 1997, 2000]
print list1
del list1[2]
print "After deleting value at index 2 : "
print list1
输出结果
['physics', 'chemistry', 1997, 2000]
After deleting value at index 2 :
['physics', 'chemistry', 2000]
以上是关于python 语言教程列表常用方法的主要内容,如果未能解决你的问题,请参考以下文章