perl的hash和python的字典之间的区别

前端之家收集整理的这篇文章主要介绍了perl的hash和python的字典之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是perl的新手,在大多数使用哈希的地方都给出了对 python词典的引用.我注意到的一个区别是哈希不保留元素的顺序.我想知道两者之间是否存在更具体和根本的差异.

解决方法

最根本的区别是,如果访问不存在的元素,perl哈希不会抛出错误.
$python -c 'd = {}; print d["a"]'
Traceback (most recent call last):
  File "<string>",line 1,in <module>
KeyError: 'a'
$perl -e '$d = {};  print $d->{a}'
$

与python不同,Perl散列自动创建元素

$python -c 'd = dict(); d["a"]["b"]["c"]=1'
Traceback (most recent call last):
  File "<string>",in <module>
KeyError: 'a'
$perl -e '$d = {};  $d->{a}{b}{c}=1'
$

如果你要将perl转换为python,那么这些主要内容会让你感到惊讶.

原文链接:https://www.f2er.com/Perl/172345.html

猜你在找的Perl相关文章