美文网首页
python序列

python序列

作者: 繁花似锦之流年似水 | 来源:发表于2019-04-09 15:20 被阅读0次

1、列表

列表的结构就是我们平常见的数组,常见用法如下

直接创建

aa=[]

使用list函数

list('hello')

增加元素

append方法:将一个对象加到列表末尾

清空列表内容

lis.clear()

复制列表

lis.copy()

合并两个列表

lis1.extend(lis2)  lis1发生变化

lis1+lis2  生成一个新的序列

查找索引

lis.index('hello')

2、元组

3、字典

相关文章

网友评论

      本文标题:python序列

      本文链接:https://www.haomeiwen.com/subject/qyabiqtx.html