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的列表排序的主要内容,如果未能解决你的问题,请参考以下文章

python文件操作与图片处理

如何对列表进行排序 python

Python中,如何给列表排序?

python列表排序方法reversesortsorted

python列表列表排序

python中列表排序,字典排序,列表中的字典排序