How can I get a list of the values in a dict in Python?

378    Asked by BellaBlake in Python , Asked on May 20, 2021

In Java, getting the values of a Map as a List is as easy as doing list = map.values();. I'm wondering if there is a similarly simple way in Python to get a list of values from a dict.

Answered by Carl Paige

You can use the below-mentioned method to get list of values from dictionary python where dict.values returns a view of the dictionary’s values instead:

  list(d.values())


Your Answer

Interviews

Parent Categories