Python( 三):列表

作者: Tester_Jingel | 来源:发表于2017-11-28 17:22 被阅读3次

    增删改
    列表:
    增加(1).append()
    Lists = []
    Lists.append(‘xxx’)

    增加(2).insert(索引,文本)
    Lists.insert(0,’hello’)

    删除(1):del lists[索引]
    Del lists[0]

    删除(2): .pop(索引)
    Lists.pop() 不指定索引的话默认删除列表的最后一个元素
    Lists.pop(0)

    删除(3): .remove(‘元素内容’)
    Lists.remove(‘Lucy’)

    修改
    Lists[0] = ‘aaaa’

    排序
    升序.sort()
    Lists = [‘aa’, ‘cc’,’bb’,’dd’]
    Lists.sort()
    Print lists
    -------[‘aa’, ’bb’, ’cc, ’dd’]

    降序.sort(reverse = True)
    Lists = [‘aa’, ‘cc’,’bb’,’dd’]
    Lists.sorted()
    Print lists
    -------[‘dd, cc, bb, aa]

    倒着打印列表:.reverse()
    Lists.reverse() print lists
    临时排序:
    Print sorted(lists)
    列表长度:len(lists)

    相关文章

      网友评论

        本文标题:Python( 三):列表

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