python实现获取服务器IP地址

2023-01-31 05:01:30 服务器 获取 地址

第一种:

#!/usr/bin/env python

import  os
ip=os.popen("ifconfig eth0 | awk -F [:' ']+ 'NR==2{print $4}'")

print ip.readline()


第二种:

>>> os.system("ifconfig eth0 | awk -F [:' ']+ 'NR==2{print $4}'")


想问问:Python里有过滤字符的命令吗,就像shell中的grep的效果那样~

相关文章