菜鸟的Python之路

Python( 三):列表

2017-11-28  本文已影响3人  Tester_Jingel

增删改
列表:
增加(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)

上一篇下一篇

猜你喜欢

热点阅读