标签: python python-3.6
虽然int()实例的大小在python 2和python 3中都是24个字节,但任何人都可以帮助理解为什么存在这种差异
Python 2.7:
import sys sys.getsizeof(5)
输出:24
Python 3.6:
输出:28