import json # Python 轉 JSON data = {"name": "Alice", "age": 25} json_str = json.dumps(data) # JSON 轉 Python data = json.loads(json_str)