python之列表索引,切片,添加,删除,修改
作者:互联网
# 什么时候用列表?---同一个类型的数据,建议用列表
注意:# 列表中的子元素为元组,不可以对元组的子元素进行修改,但可以整体修改
m = [1, 0.02,'hello',(1,2,3),True] # m[3][2] = 'nihao'错误 m[3] = 'nihao' print(m) # [1, 0.02, 'hello', 'nihao', True]
列表的格式:# 列表list 符号[ ]
# 1.空列表
c = ()
# 2.列表中可以包含任何类型的数据
# 3.列表中的元素 根据逗号分割
a = [1, 0.02,'hello',[1,2,3],True]
# 4.列表里的元素,也是有索引值的,从0开始
# 5.获取列表里的单个值:列表[索引值]
print(a[-1]) # True print(a[2]) # hello
# 6.列表的切片 同字符串的操作 列表名[索引头:索引尾:步长]
print(a[::2]) # [1, 'hello', True] print(a[0:5:2]) # [1, 'hello', True]
# 7.列表中添加任何类型的数据
# (1)append()追加在末尾 不能追加多个元素
a = [1, 0.02,'hello',[1,2,3],True] a.append('你很可爱') print('a列表的值{0}'.format(a))
# (2)insert()插入数据,需指定位置
a.insert(2,'kite') print('a列表的值{0}'.format(a))
# 8.删除元素
# (1)pop()默认删除最后一个元素
a.pop() a.pop(2) # 删除a[2] #删除指定索引位置的元素
# (2)指定删除某个值
a.remove(1) # 删除1
# 9.修改
b = [1, 0.02,'hello',[1,2,3],True] b[1] = 'Time' # 赋值 print('b列表的值{0}'.format(b))
标签:0.02,python,列表,切片,索引,print,True,hello 来源: https://www.cnblogs.com/kite123/p/11636463.html