I want to get the percentage of memory usage from psutil.phymem_usage() in python, but when I run the function, it returns this:
usage(total=520048640L, used=503255040L, free=16793600L, percent=81.5)
How can I filter it so that only a percentage passes?
source share