脚本的威力
时间:2009-01-13 来源:thomation
最近用ptyhon些毕业设计,那个叫爽呀,体验了脚本语言的威力,我觉得大概有以下两点:
1,语法简单,动态语言不用声明,而且库的用法也简单,所以用起来得心应手
2,与linux的命令可以完美的结合,比如我刚写了个取广播地址的程序
#!/usr/bin/python
2
3 import os
4 class GetIpCmd():
5 def __init__(self):
6 self.tmpfile = 'ip.db'
7
8 def run(self):
9 os.system('ifconfig | grep Bcast >>'+ self.tmpfile)
10 f = file(self.tmpfile,'r')
11 str = f.readline()
12 i = str.find('Bcast')
13 str = str[i:len(str)]
14 i = str.find(' ')
15 str = str[len('Bcast')+1:i]
16 f.close()
17 os.system('rm '+self.tmpfile)
18 return str
19 if __name__ == '__main__':
20 get_ip = GetIpCmd()
21 str = get_ip.run()
22 print str
查了半天找不到怎么取本机ip地址,干脆就用ipcofig命令,写成commond模式,以后又好方法再加上。哈哈,设计模式真是好东西
1,语法简单,动态语言不用声明,而且库的用法也简单,所以用起来得心应手
2,与linux的命令可以完美的结合,比如我刚写了个取广播地址的程序
#!/usr/bin/python
2
3 import os
4 class GetIpCmd():
5 def __init__(self):
6 self.tmpfile = 'ip.db'
7
8 def run(self):
9 os.system('ifconfig | grep Bcast >>'+ self.tmpfile)
10 f = file(self.tmpfile,'r')
11 str = f.readline()
12 i = str.find('Bcast')
13 str = str[i:len(str)]
14 i = str.find(' ')
15 str = str[len('Bcast')+1:i]
16 f.close()
17 os.system('rm '+self.tmpfile)
18 return str
19 if __name__ == '__main__':
20 get_ip = GetIpCmd()
21 str = get_ip.run()
22 print str
查了半天找不到怎么取本机ip地址,干脆就用ipcofig命令,写成commond模式,以后又好方法再加上。哈哈,设计模式真是好东西
相关阅读 更多 +