Python教程

Python dict和str互转

本文主要是介绍Python dict和str互转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、将str转化为dict
1.1 使用Python 3的内置ast库的函数literal_eval。最好使用literal_eval而不是eva

1 import ast
2 str_of_dict = "{'name': 'xiaohong', 'age': '18'}"
3 new_dic = ast.literal_eval(str_of_dict)
4 print(type(new_dic))
输出结果:
<class 'dict'>

1.2  使用json模块的json.loads(),这里需要注意的是,使用json.loads()时,key和value要用双引号,否则会报错

1 import json
2 str_of_dict = '{"name": "xiaohong", "age": "18"}'
3 new_dic2= json.loads(str_of_dict)
4 print(type(new_dic2))
输出结果:
<class 'dict'>

二、将dict转化为str
2.1 直接str()

1 my_dict = {'name': 'xiaoming', 'age': '18'}
2 new_str = str(my_dict)
3 print(type(new_str))
输出结果:
<class 'str'>

2.2 使用json.dumps()

import json
my_dict = {'name': 'xiaoming', 'age': '18'}
new_str = json.dumps(my_dict)
print(type(new_str))
输出结果:
<class 'str'>

 

这篇关于Python dict和str互转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!