mengevaluasi berapa banyak memori program python
ps -m -o %cpu,%mem,command
Worried Walrus
ps -m -o %cpu,%mem,command
import os, psutil
process = psutil.Process(os.getpid())
print(process.memory_info().rss) # in bytes
import sys
a, b, c,d = "abcde" ,"xy", 2, 15.06
print(sys.getsizeof(a))
print(sys.getsizeof(b))
print(sys.getsizeof(c))
print(sys.getsizeof(d))
#Running the above code gives us the following result
38
35
24
24
import sys
variable = 30
print(sys.getsizeof(variable)) # 24