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 returnFalse. This also applies when comparingdict.values()to itself:>>> d = {'a': 1} >>> d.values() == d.values() FalsePrinted 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •