字符串 转  json

import json

jsonData = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

text = json.loads(jsonData)
print(text)

 

相关文章:

  • 2021-10-07
  • 2022-01-18
  • 2022-12-23
  • 2022-02-07
猜你喜欢
  • 2022-02-07
  • 2021-06-13
  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-30
相关资源
相似解决方案