python print key value in dictionary code example
Example 1: print key of dictionary python
for key, value in mydic.items() :
print (key, value)
Example 2: how to print a value from a dictionary in python
dictionary={
"Jeff":{
"lastname":"bobson",
"age":55,
"working":True
},
"James":{
"lastname":"Bobson",
"age":34,
"working":False
}
}
for i in dictionary:
print(i, ":")
for j in dictionary[i]:
print(" ", j, ":", dictionary[i][j])
print()
Jeff :
lastname : bobson
age : 55
working : True
James :
lastname : Bobson
age : 34
working : False
for k, v in dictionary.items():
print(k, v)
Jeff {'lastname': 'bobson', 'age': 55, 'working': True}
James {'lastname': 'Bobson', 'age': 34, 'working': False}
Example 3: print key of dictionary python
for key, value in mydic.iteritems() :
print key, value