Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 python 2.6 及更高版本中,您可以执行以下操作sys.getsizeof:
sys.getsizeof
>>> import sys >>> sys.getsizeof("abc") 40
有没有办法在 python 2.5 中做到这一点?
不,在 Python 2.5 或更早版本中没有可用的大小信息。
您必须从issue 2898向后移植(C 代码)补丁。