#this code helps translate JSON file #to a dictionary import json person = '{"name": "Bob", "languages": ["English", "Fench"]}' person_dict = json.loads(person) print( person_dict) print(person_dict['languages'])