json.dumps將一個Python數據結構轉換為JSON. import json data = { 'name' : 'myname', 'age' : 100, } json_str = json.dumps(data) ...
確定! 回上一頁