python tricks 01

Posted 1994july

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python tricks 01相关的知识,希望对你有一定的参考价值。

01: 考察range/sort/lambda

对以下数据进行排序

原数据:

[-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5]

目标数据:

[0, -1, 1, -2, 2, -3, 3, -4, 4, -5, 5]

实现代码

 sorted(range(-5, 6), key=lambda x: abs(x))

02 字典对键/值排序

data = dict(a=2, b=4, c=1, d=3)

# 按照key进行排序
 sorted(data.items(), key=lambda x: x[0])
# [(‘a‘, 2), (‘b‘, 4), (‘c‘, 1), (‘d‘, 3)]

# 按照value进行排序
sorted(data.items(), key=lambda x: x[1])
# [(‘c‘, 1), (‘a‘, 2), (‘d‘, 3), (‘b‘, 4)]
# 逆序
sorted(data.items(), key=lambda x: x[1], reverse=True)
[(‘b‘, 4), (‘d‘, 3), (‘a‘, 2), (‘c‘, 1)]

以上是关于python tricks 01的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python 代码片段编写 LaTeX 文档

学习笔记:python3,代码片段(2017)

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

Python图像特征的音乐序列生成数据集制作的一些tricks

你如何在 python 中处理 graphql 查询和片段?

python Python :: Notes&Tricks