最佳答案
import json
array = '{"fruits": ["apple", "banana", "orange"]}'
data = json.loads(array)
That is my JSON array, but I would want to convert all the values in the fruits string to a Python list. What would be the correct way of doing this?