当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

将 JSON 转换为字符串

  1. import json
  2. # list with dict a simple Json format
  3. json_exp = \
  4. [{"id": "12", "name": "Mark"}, {"id": "13", "name": "Rock", "date": None}]
  5. print(type(json_exp))
  6. str_conv = json.dumps(json_exp) # string
  7. print(type(str_conv))
  8. print(str_conv)

Output:

  1. class 'list'
  2. class 'str'
  3. [{"id": "12", "name": "Mark"}, {"id": "13", "name": "Rock", "date": null}]

该分类下的相关小册推荐: