Python dict和str互转
2021/8/6 17:06:10
本文主要是介绍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互转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南
- 2024-12-20Python编程基础与进阶
- 2024-12-19Python基础编程教程
- 2024-12-19python 文件的后缀名是什么 怎么运行一个python文件?-icode9专业技术文章分享
- 2024-12-19使用python 把docx转为pdf文件有哪些方法?-icode9专业技术文章分享
- 2024-12-19python怎么更换换pip的源镜像?-icode9专业技术文章分享