码迷,mamicode.com
首页 > 编程语言 > 详细

Python 练习题:统计系统剩余内存

时间:2019-01-11 17:07:27      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:split()   tin   练习题   bre   nbsp   with open   练习   系统内存   proc   

#!/usr/bin/env python
#-*- coding:utf-8 -*-

‘‘‘ 统计系统内存信息 ‘‘‘  

with open(/proc/meminfo) as fd:
    for line in fd:
        if line.startswith(MemTotal):
            MemTotal = line.split()[1]
            continue
        if line.startswith(MemFree):
            MemFree = line.split()[1]
            break
        
print "总内存:%sM" % (int(MemTotal)/1024)
print "剩余内存:%sM" % (int(MemFree)/1024)

 

 

 

 

 

    

Python 练习题:统计系统剩余内存

标签:split()   tin   练习题   bre   nbsp   with open   练习   系统内存   proc   

原文地址:https://www.cnblogs.com/pzk7788/p/10255567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!