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

python-列表方法介绍

时间:2017-12-04 16:41:52      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:python   xtend   数据   反向   app   ever   try   列表方法   ica   

    列表是Python中最基本的数据结构。列表中的每个元素都分配一个数字作为它的位置索引,第一个索引是0,第二个索引是1,依此类推。
列表的方法如下:
先定义三个列表:
list1 = [‘python, ’hello, 100, 2000]
list2 = [1, 7, 3, 4, 5]
list3 = ["a", "b", "c", "d”]

 

1、在列表末尾一次性追加另一个序列中的多个值:

list1.extend(list2)
print(list1)
结果:[‘physics‘, ‘chemistry‘, 1997, 2000, 1, 2, 3, 4, 5]
 
2、从列表中找出某个第一个匹配项的索引位置:
print(list1.index(hello’))
结果:1
 
3、统计某个元素在列表中出现的次数
print(list1.count(hello’))
结果:1
 
4、删除列表中的一个元素,默认最后一个元素
print(list1.pop())
print(list1)
结果:
2000
[‘python‘, ‘hello‘, 100]
 
5、列表中增加一个元素(在列表的2号位置后增加一个元素)
list1.insert(2,"world")
print(list1)
结果:
[‘python‘, ‘hello‘, ‘world‘, 100, 2000]
 
6、对列表进行排序
list2.sort()
print(list2)
结果:[1, 3, 4, 5, 7]
 
7、删除列表中的某个元素:
list2.remove(7)
print(list2)
结果:[1, 3, 4, 5, ]
 
8、对列表进行反向排序
list1.reverse()
print(list1)
结果:[2000, 100, ‘hello‘, ‘python’]
 
9、拷贝列表
list4 = list1.copy()
print(list4)
结果:[‘python‘, ‘hello‘, 100, 2000]
 
10、清空列表
list1.clear()
print(list1)
结果:[]
 
11、在列表尾部添加一个元素
list1.append(1000)
print(list1)
结果:[‘python‘, ‘hello‘, 100, 2000, 1000]
 
 
 
 
 

python-列表方法介绍

标签:python   xtend   数据   反向   app   ever   try   列表方法   ica   

原文地址:http://www.cnblogs.com/teddy-guo/p/7977551.html

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