SyntaxFix
Write A Post
Hire A Developer
Questions
Yes it's the exact same thing in Python 2:
d.values()
In Python 3 (where dict.values returns a view of the dictionary’s values instead):
dict.values
list(d.values())