import json

str_Detail = '{"rowOne":"A","rowTwo":"B","rowThree":"C"}'
print(str_Detail, type(str_Detail))
'''
{"rowOne":"A","rowTwo":"B","rowThree":"C"} <class 'str'>
'''
dict_Detail = json.loads(str_Detail)
print(dict_Detail, type(dict_Detail))
'''
{'rowOne': 'A', 'rowTwo': 'B', 'rowThree': 'C'} <class 'dict'>
'''

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-16
  • 2022-12-23
相关资源
相似解决方案