I'm trying to make a game in python and am organizing my data.
game={
'img':{
'bg':'wouir'
}
}
print(stuff.img.bg)
When I push build it has an error on the last line saying:
AttributeError: 'dict' object has no attribute 'img'
It seems I have a problem, what is it?