3.4.6. Dictionaries with Lists - JulTob/Python GitHub Wiki

Dictionaries become powerful when you start working with data collections as values

data = {
  "sports": [ "basketball", "football", "rugby", "fake_american_rugby"]
  }

print( data["sports"][0] ) # dict -> key -> index