๐Ÿ Python & library/Python

Python memory status, ๋ฉ”๋ชจ๋ฆฌ ์ ์œ ์œจ ํ™•์ธ

๋ณต๋งŒ 2021. 8. 4. 23:32

์ „์ฒด ๋ฉ”๋ชจ๋ฆฌ ์‚ฌ์šฉ๋Ÿ‰ ํ™•์ธ

import psutil
psutil.virtual_memory()
>> svmem(total=34282946560, available=21586800640, percent=37.0, used=12696145920, free=21586800640)

 

๋ณ€์ˆ˜ ๋ฉ”๋ชจ๋ฆฌ ํ• ๋‹น๋Ÿ‰ ํ™•์ธ

import sys
sys.getsizeof(variable) #size of variable in Bytes
๋ฐ˜์‘ํ˜•