美文网首页
python--列表

python--列表

作者: 冥千洛 | 来源:发表于2018-06-14 20:19 被阅读0次
image.png

insert 在指定索引位置添加数据


image.png

append 在列表末尾添加数据


image.png
extend把列表2追加到列表1中
image.png
列表[索引] = 数据 用来修改指定索引的数据
image.png

del 列表[索引] 删除指定索引的数据


image.png
列表.pop 删除末尾的数据
image.png
列表.pop(索引) 删除指定索引的数据
image.png
列表.clear 清空列表
image.png
len(列表) 统计列表长度
image.png
列表。count(数据)统计数据在列表中出现的次数
image.png

列表.sort(数据)升序


image.png
列表.sort(reverse=True) 降序
image.png
列表.reverse() 逆序

相关文章

  • 2018-01-16

    Python--查看函数的参数列表 import inspect inspect.getargspec(函数名) ...

  • python--列表

    insert 在指定索引位置添加数据 append 在列表末尾添加数据 del 列表[索引] 删除指定索引的数据 ...

  • Python--列表

    列表是可变的,可以改变列表的内容,并且有很多的方法。 1、list函数--将序列变成列表 2、列表基本操作 列表可...

  • python--列表list

    列表list是python基本的数据结构,是可变序列,允许有重复元素。 环境 win10 64bit python...

  • python--列表,元组,字典

    * List(列表) 是 Python 中使用 最频繁 的数据类型,在其他语言中通常叫做 数组 list = ...

  • 贪心算法粗解及实例

    文集列表:自我修养--瞎写的故事python--入门到放弃杂七杂八--啥都有操作系统--不要低估一颗底层的心机器学...

  • 数据库范式总结

    文集列表:自我修养--瞎写的故事python--入门到放弃杂七杂八--啥都有操作系统--不要低估一颗底层的心机器学...

  • 一篇文章教你读懂量子通信,真的很有趣

    文集列表:自我修养--瞎写的故事python--入门到放弃杂七杂八--啥都有操作系统--不要低估一颗底层的心机器学...

  • Python--报错RecursionError: maximu

    Python--报错RecursionError: maximum recursion depth exceede...

  • Python--报错TabError: inconsistent

    Python--报错TabError: inconsistent use of tabs and spaces i...

网友评论

      本文标题:python--列表

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