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

Python - 统计系统内存练习

时间:2016-07-03 15:53:49      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:python   制表符   百分比   字符串   统计   

统计系统内存,然后查看到占用了多少百分比。

字符串的方法: a.startswith()   返回的是一个bool(布尔)值。

                          a.split()  切分空格和制表符,然后返回的是一个列表。

#!/usr/bin/python

#coding:utf8


with open(‘/proc/meminfo‘) as fd:

    for line in fd:

        if line.startswith(‘MemTotal‘):

            total = int(line.split()[1])

            continue

        if line.startswith(‘MemFree‘):

            free = int(line.split()[1])

print "%.2f" %(free/1024.0)+‘M‘

 

本文出自 “少犟” 博客,请务必保留此出处http://xushaojie.blog.51cto.com/6205370/1795289

Python - 统计系统内存练习

标签:python   制表符   百分比   字符串   统计   

原文地址:http://xushaojie.blog.51cto.com/6205370/1795289

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