美文网首页
python列表

python列表

作者: 老夫愿闻其翔 | 来源:发表于2018-06-18 18:36 被阅读0次

    insert 插入

    在指定索引位置插入数据

    append插入

    •append是直接插入到末尾

    extend

    •把列表2追加到列表1中

    del

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

    pop

    •列表.pop 删除末尾的数据

    clear

    •列表.clear 清空列表

    len

    •len(列表) 统计列表长度

    count

    •列表。count(数据)统计数据在列表中出现的次数

    sort

    •列表.sort(数据)升序

    reverse

    •列表.sort(reverse=True) 降序

    相关文章

      网友评论

          本文标题:python列表

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