码迷,mamicode.com
首页 > 微信 > 详细

微信之初学者:基本的列表操作

时间:2016-11-23 06:08:56      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:blog   lis   lov   span   插入   hello   class   color   操作   

1.列表举例

print(list(hello))

2列表元素赋值

x = [1,1,1]
x[1] = 2
print(x)
x = [1,1,1]
x[4] = 3
print(x) #会报错的,由于为一个不存在的元素进行赋值

3删除元素

name = [hello,world,python,love]
del name[2]
print(name)

    ?    

4分片赋值

name = list[python]
print(name)
name[2:]  = list(ar)
print(name)
name = list(Perl)
name[1:] = list(ython)
print(name)
numbers = [1,5]
numbers[1:1] = [2,3,4]
print(numbers)     #插入元素
numbers = ?[1,2,3,4,5]
numbers[1:4] = []
print(numbers)#删除元素

 

微信之初学者:基本的列表操作

标签:blog   lis   lov   span   插入   hello   class   color   操作   

原文地址:http://www.cnblogs.com/printer/p/6091463.html

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