What is the display output of the following code?import json…

What is the display output of the following code?import jsonstates = ‘ [ {“abbrev”: “AL”, “name”: “Alabama”, “capital”: “Montgomery”},                 {“abbrev”: “CO”, “name”: “Colorado”, “capital”: “Denver”},                 {“abbrev”: “MT”, “name”: “Montana”, “capital”: “Helena”} ] ‘ jInput = json.loads(states)for n in jInput:           print(n[“abbrev”],  ‘, ‘,  n[“capital”])