Answers for "python get dictionary value from key"

0

get a value from a dictionary python

#!/usr/bin/python

dict = {'Name': 'Zabra', 'Age': 7}
print "Value : %s" %  dict.get('Age')
print "Value : %s" %  dict.get('Education', "Never")
Posted by: Guest on November-30-2020
2

how to get the value of key in python

print(dict["key"])
Posted by: Guest on May-17-2020

Code answers related to "python get dictionary value from key"

Python Answers by Framework

Browse Popular Code Answers by Language