我正在尝试将一行 Perl 代码转换为 Python,但遇到了 Python 的 sorted() 方法的障碍。Python 没有像 Perl 那样的本地哈希支持,所以我使用 autodict() 来复制 Perl 的哈希行为。下面是有关如何完成排序的代码片段。
珀尔:
hash{one}{"index"} = 1
hash{one}{"value"} = "uno"
hash{two}{"index"} = 2
hash{two}{"value"} = "dos"
hash{three}{"index"} = 3
hash{three}{"value"} = "tres"
foreach my $ctg (sort hash{$a}{"index"} <=> hash{$b}{"index"}} keys %{ hash })
Python:
hash[one]["index"] = 1
hash[one]["value"] = "uno"
hash[two]["index"] = 2
hash[two]["value"] = "dos"
hash[three]["index"] = 3
hash[three]["value"] = "tres"
for ctg in sorted(hash):
上面的翻译并不完全正确。Python 版本基于散列中的第一个元素进行排序,即一、二、三。但是 Perl 版本是根据“索引”进行排序的