Python的列表排序
Posted zy_dream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的列表排序相关的知识,希望对你有一定的参考价值。
列表元素如果全是元组,元组中又有数字,那么 sorted 也可对其进行排序
print log_to_arr()
print sorted(log_to_arr())
运行结果:
[(72044, 'GET / HTTP/1.0'), (872302, 'GET /home HTTP/1.0'), (370689, 'GET /search?position_times=2 HTTP/1.0'), (155704, 'GET /member/people/119 HTTP/1.0'), (12130, 'GET /logout HTTP/1.0')]
[(12130, 'GET /logout HTTP/1.0'), (72044, 'GET / HTTP/1.0'), (155704, 'GET /member/people/119 HTTP/1.0'), (370689, 'GET /search?position_times=2 HTTP/1.0'), (872302, 'GET /home HTTP/1.0')]
以上是关于Python的列表排序的主要内容,如果未能解决你的问题,请参考以下文章