Primary
''dictionary view'' ⚬|Definition|1st|20260605182851-00-⌔
Glossary — Python 3.14.2 documentation#term-dictionary-view
dictionary view
The objects returned from
dict.keys(),dict.values(), anddict.items()are called dictionary views. They provide a dynamic view on the dictionary’s entries, which means that when the dictionary changes, the view reflects these changes. To force the dictionary view to become a full list uselist(dictview). See Dictionary view objects.Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •