python第五天
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python第五天相关的知识,希望对你有一定的参考价值。
列表list
增 append
a = [‘shangsan‘,‘lisi‘] a.append(‘wangwu‘) ###wangwu增加到尾部
insert 插入(根据索引)
a = [‘b‘,‘c‘] a.insert(1,‘d‘) ####d插入到列表1的位置 结果是:[‘b‘,‘d‘,‘c‘]
extend 迭代的添加
a = [‘a‘,‘b‘,‘c‘] a.extend(‘mnl‘) 结果是: [‘a‘,‘b‘,‘c‘,‘m‘,‘n‘,‘l‘]
列表的删除
pop 按照索引删除,有返回值
a = [‘a‘,‘b‘,‘c‘,‘d‘] a.pop(2) 结果是 [‘a‘,‘b‘,‘d‘]
remove 直接删除元素
a = [‘a‘,‘b‘,‘c‘] m.remove(‘a‘)
del 按照索引删除 可切片删除
a = [‘a‘,‘b‘,‘c‘,‘d‘] del a[0:1]
clear 清空列表
列表的改
先删除,迭代着添加
根据索引,直接赋值
a = [‘a‘,‘b‘,‘c‘] a[0] = ‘d‘ 结果是[‘d‘,‘b‘,‘c‘]
count 列表计数
排序(列表是有序的,可根据索引排序)
sort 正序
a = [1,5,8,4,6,3,4] a.sort() print(a) ###按照大小顺序
reverse 倒序(反转,从后往前排)
倒序(按照顺序) a.sort(rever=True)
列表转换成字符串 join
a = [‘a‘,‘b‘,‘c‘] print(‘*‘.join(a)) ###‘*‘分隔符
结果是:a*b*c
以上是关于python第五天的主要内容,如果未能解决你的问题,请参考以下文章