在 Python 中将 OrderedDict 转换为常规 Dict
使用 dict()
函数将 OrderedDict 转换为常规字典,例如 dictionary = dict(ordered_dict)
。 dict()
函数可以传递一个可迭代的键值对并返回一个新字典。
from collections import OrderedDict
import json
# ✅ 将 OrderedDict 转换为常规 Dict
ordered_dict = OrderedDict(
[('first', 'fql'),
('last', 'jiyik'),
('age', 30)]
)
dictionary = dict(ordered_dict)
# 👇️ {'first': 'fql', 'last': 'jiyik', 'age': 30}
print(dictionary)
print(type(dictionary)) # 👉️ <class 'dict'>
# ---------------------------------------------------
# ✅ 将嵌套的 OrderedDict 转换为常规字典
ordered_dict = OrderedDict(
[('name', 'fqljiyik'),
('address', OrderedDict([('post_code', 123)])),
]
)
json_str = json.dumps(ordered_dict)
regular_dict = json.loads(json_str)
# 👇️ {'name': 'fqljiyik', 'address': {'post_code': 123}}
print(regular_dict)
print(type(regular_dict)) # 👉️ <class 'dict'>
第一个示例使用 dict()
函数将 OrderedDict 对象转换为字典。
如果它不是嵌套的 OrderedDict
对象,我们可以直接将 OrderedDict
传递给 dict()
函数。
from collections import OrderedDict
ordered_dict = OrderedDict(
[('first', 'fql'),
('last', 'jiyik'),
('age', 30)]
)
dictionary = dict(ordered_dict)
# 👇️ {'first': 'fql', 'last': 'jiyik', 'age': 30}
print(dictionary)
print(type(dictionary)) # 👉️ <class 'dict'>
print(dictionary['first']) # 👉️ fql
print(dictionary['last']) # 👉️ jiyik
可以向 dict()
类传递一个可迭代的关键字参数或可迭代的键值对,并返回一个新字典。
如果我们有嵌套的
OrderedDict
对象,请改用 json 模块。
在 Python 中将嵌套的 OrderedDict 转换为常规的 Dict
要将嵌套的 OrderedDict 转换为常规字典:
-
使用
json.dumps()
方法将嵌套的 OrderedDict 转换为 JSON 字符串。 -
使用
json.loads()
方法将 JSON 字符串转换为本机 Python 字典。
from collections import OrderedDict
import json
ordered_dict = OrderedDict(
[('name', 'fqljiyik'),
('address', OrderedDict([('post_code', 123)])),
]
)
json_str = json.dumps(ordered_dict)
regular_dict = json.loads(json_str)
# 👇️ {'name': 'fqljiyik', 'address': {'post_code': 123}}
print(regular_dict)
print(type(regular_dict)) # 👉️ <class 'dict'>
第一步是使用 json.dumps()
方法将嵌套的 OrderedDict 对象转换为 JSON 字符串。
from collections import OrderedDict
import json
ordered_dict = OrderedDict(
[('name', 'fqljiyik'),
('address', OrderedDict([('post_code', 123)])),
]
)
json_str = json.dumps(ordered_dict)
print(json_str) # 👉️ {"name": "fqljiyik", "address": {"post_code": 123}}
print(type(json_str)) # 👉️ <class 'str'>
json.dumps
方法将 Python 对象转换为 JSON 格式的字符串。
最后一步是使用
json.loads()
方法将 JSON 字符串解析为本机 Python 字典。
from collections import OrderedDict
import json
ordered_dict = OrderedDict(
[('name', 'fqljiyik'),
('address', OrderedDict([('post_code', 123)])),
]
)
json_str = json.dumps(ordered_dict)
regular_dict = json.loads(json_str)
# 👇️ {'name': 'fqljiyik', 'address': {'post_code': 123}}
print(regular_dict)
print(type(regular_dict)) # 👉️ <class 'dict'>
json.loads
方法将 JSON 字符串解析为本机 Python 对象。
我们不能直接将嵌套的
OrderedDict
传递给dict()
函数,因为dict()
函数需要可迭代的关键字参数或可迭代的键值对。
my_dict = dict(
[('id', 1), ('first', 'fql'), ('last', 'jiyik')]
)
print(my_dict) # 👉️ {'id': 1, 'first': 'fql', 'last': 'jiyik'}
OrderedDict
类是 dict
的子类,它会记住其条目的添加顺序。
请注意
,从 Python 3.7 开始,标准 dict 类也保证保留插入顺序。
相关文章
在 C 语言中实现字典
发布时间:2023/05/07 浏览次数:196 分类:C语言
-
本文介绍了如何在 C 语言中实现字典。使用 hcreate、hsearch 和 hdestroy 在 C 语言中实现字典功能
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。