【问题标题】:Python 2 and 3 compatible way of iterating through dict with key and valuePython 2 和 3 兼容的方式通过键和值迭代 dict
【发布时间】:2023-04-06 11:58:01
【问题描述】:

由于使用iteritems(),我有以下仅适用于 Python 2 的列表理解:

foo = [key for key, value in some_dict.iteritems() if value['marked']]

我无法导入任何库。有没有一种干净的方法可以在 Python 2 和 3 上兼容?

【问题讨论】:

    标签:
    python
    python-3.x
    dictionary
    python-2.x