Ich habe ein Dictionary
teams = {
"alpha": { "idx": 18},
"beta": { "idx": 40},
"charly": { "idx": 10}
}
for team in teams:
print(team)
Wenn ich aber auf eine Eigenschaft in dem Element zugreifen möchte
for team in teams:
print(teams.team.idx)
dann kommt der Fehler
AttributeError: 'dict' object has no attribute 'team'