IT 技术分享
Python 计算对象大小
zgljl2012 -
20 Sep 2019
Python 计算对象所占内存
import sys a = "hello" print(sys.getsizeof(a))