python之函数

#!/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 infromation %s command:\n" % diskspace
        subprocess.call([diskspace,diskspace_arg])

def main():
        uname_func()
        disk_func()

main()

 

posted @ 2016-04-17 19:12  知_行  阅读(147)  评论(0编辑  收藏  举报