Python 字典初始化dict()和{}

參考:https://doughellmann.com/blog/2012/11/12/the-performance-impact-of-using-dict-instead-of-in-cpython-2-7-2/python

python字典初始化比較經常使用的兩種方式:dict() 和 {}性能

性能方面,{}性能更好。spa

能夠經過dist模塊,查看二者的字節碼:code

>>> import dis
>>> dis.dis("{ }")
          0 <123>           32032
>>> dis.dis("dict()")
          0 LOAD_CONST      25449 (25449)
          3 LOAD_GLOBAL     10536 (10536)
>>>

經過{}初始化,只須要經過一次常量指令便可完成,orm

經過dict(),須要執行CALL_FUNCTION指令。blog

還能夠經過實際的執行時間來判斷:get

from timeit import timeit
timeit("d = dict()")
0.14620208740234375
timeit("d={}")
0.04514813423156738
相關文章
相關標籤/搜索