Answers for "python dict get alll values"

0

Dictionary Get All Values

hh = {"a":3, "b":4, "c":5}

# get all values
print(hh.values())
# dict_values([3, 4, 5])
Posted by: Guest on December-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language