Python中list轉成Json字符串

  代碼:json # list 轉成Json格式數據 def listToJson(lst): import json import numpy as np keys = [str(x) for x in np.arange(len(lst))] list_json = dict(zip(keys, lst)) str_json = json.dumps(
相關文章
相關標籤/搜索