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

Python数据基础类型-列表

时间:2019-08-09 13:15:58      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:pen   div   nbsp   位置   元素   序号   color   hello   列表   

1,列表的创建

list1 = [hello, world, 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = ["a", "b", "c", "d"]
list4 = list() #创建空列表
list5 = [] #创建空列表

2,访问列表的值

  列表的数据访问需要使用索引序号。 list1 = [‘hello‘, ‘world‘, 19, 20]

list2 = [1, 2, 3, 4, 5 ]
print "list1[0]: ", list1[0]
print "list2[1:5]: ", list2[1:5]
输出结果:
list1[0]: hello
list2[1:5]: [2, 3, 4, 5]

3,数值更新

  列表内容的更新可以直接使用索引序号,进行内容的更新,也可以使用append方法。insert( )在列表的任何位置添加新元素。

list1 = [hello, world, 19, 20]
print list1
list1[0] = "HELLO"
print list1
list1.append(first)
print list1
list1.insert(0,‘111111‘)
运行结果:
[hello, world, 19, 20]
[HELLO, world, 19, 20]
[HELLO, world, 19, 20, first]
[‘111111‘, ‘HELLO‘, ‘world‘, 19, 20, ‘first‘]

4,列表元素删除

  列表元素的删除使用del语句,也可以使用remove方法,也可使用pop()方法。

 

Python数据基础类型-列表

标签:pen   div   nbsp   位置   元素   序号   color   hello   列表   

原文地址:https://www.cnblogs.com/felix2008/p/11326406.html

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