1. python存储Json格式的数据 import json array = '{"drinks": ["coffee", "tea", "water"]}' data = json.loads(array) for element in data['drinks']: print ...
確定! 回上一頁