🔵 🔵 🔵


Primary

၊၊||၊|။

dict.values() ⚬|Documentation|1st|20251021141613-00-⌔

Built-in Types — Python 3 documentation#dict.values

values()

Return a new view of the dictionary’s values. See the documentation of view objects.

An equality comparison between one dict.values() view and another will always return False. This also applies when comparing dict.values() to itself:

>>> d = {'a': 1}
>>> d.values() == d.values()
False

Printed 2026-06-28.

(echo:: @ )

Link to original

Secondary

• • •