首页 > 代码库 > 学习python获取系统信息和磁盘容量
学习python获取系统信息和磁盘容量
学习目的:
1)函数调用
2)subprocess模块的使用
subprocess.call([命令,参数])
代码如下:
[root@oracle ~]# more pysysinfo_func.py #! /usr/bin/env python import subprocess def uname_func(): uname="uname" uname_arg="-a" print "Gathering system information with %s command:\n" %uname subprocess.call([uname,uname_arg]) def disk_func(): diskspace="df" diskspace_arg="-h" print "Gathering diskspace information %s command :\n" %diskspace subprocess.call([diskspace,diskspace_arg]) def main(): uname_func() disk_func() main()
本文出自 “帝心禅影” 博客,请务必保留此出处http://yedee.blog.51cto.com/513852/1550948
学习python获取系统信息和磁盘容量
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。