Dictionary help (its confusing)

I turn a json file into a dictionary, how do I get sub data? (Getting "c")
All I can do is dictionary["a"] not dictionary["a"]["b"]

{
 "a": {
  "b": {
    "c": true
   }
 }
}
Was this page helpful?