gpt4 book ai didi

Python 3 中的 Python 2 dict_items.sort()

转载 作者:太空宇宙 更新时间:2023-11-04 07:04:18 25 4
gpt4 key购买 nike

我正在将一些代码从 Python 2 移植到 3。这是 Python 2 语法中的有效代码:

def print_sorted_dictionary(dictionary):  
items=dictionary.items()
items.sort()

在 Python 3 中,dict_items 没有方法“排序”——我如何在 Python 3 中解决这个问题?

最佳答案

使用 items = sorted(dictionary.items()),它在 Python 2 Python 3 中都很好用。

关于Python 3 中的 Python 2 dict_items.sort(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2444697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com