首页 > 编程语言 > 详细

python字符串转字典

时间:2021-05-27 16:41:06      阅读:12      评论:0      收藏:0      [点我收藏+]
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‘>
‘‘‘

 

python字符串转字典

原文:https://www.cnblogs.com/nicole-zhang/p/14817239.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!