Answers for "python get just values from dict"

0

howe to print all values and keysin d

for i in d:
    print d.keys(i), d.values(i)
Posted by: Guest on May-28-2020
2

how to get all the values from the dict in python

a = {1:2 , 2:3 , 3:4}
values = a.values()
Posted by: Guest on July-21-2020

Code answers related to "python get just values from dict"

Python Answers by Framework

Browse Popular Code Answers by Language