根据自定义条件修剪字典
使用字典时,根据指定条件优化其内容通常很有用。假设您有一个表示为元组的点字典,并且您只想提取 x 和 y 坐标都小于 5 的点。
传统上,一种方法涉及使用列表理解:
points_small = {} for item in [i for i in points.items() if i[1][0] < 5 and i[1][1] < 5]: points_small[item[0]] = item[1]
虽然此方法有效,但有一个使用字典理解的更简洁的解决方案:
points_small = {k: v for k, v in points.items() if v[0] < 5 and v[1] < 5}
这个简洁的表达式生成一个新的字典,其中键和值满足指定的条件。类似地,在 Python 2.7 及更高版本中,可以使用以下语法:
points_small = {k: v for k, v in points.iteritems() if v[0] < 5 and v[1] < 5}
通过使用字典推导式,您可以获得一种优雅且高效的方法来根据任意条件过滤字典,从而提供更简化的方法数据操作。
以上是如何根据自定义条件有效地修剪字典?的详细内容。更多信息请关注PHP中文网其他相关文章!