import json def clean_data(): r = requests.get(\'https://coderbyte.com/api/challenges/json/json-cleaning\') return r.json() print(clean_data())
Ex