'''#dictionary inside a dictionary'''
print ()
print ('dictionary inside a dictionary')
print ()
data = {
'pigelid': {'name': 'Stefan', 'age': 25, 'place': 'Galati'},
'aurasid': {'name': 'Auras', 'age': 12, 'place': 'Craiova'},
'tigicid': {'name': 'Iulian', 'age': 33, 'place': 'Bucuresti'}
}
print (data[aurasid])
What is wrong in here?