import json my_list_json = '[1, 2, 3, 4, 5]' # Convert JSON to list my_list = json.loads(my_list_json) print(my_list)