私はこのコードを持っています:
x=os.system("host www.google.com")
b=re.findall(r'\w',x)
print b
しかし、これは次のエラーを返します。
TypeError: expected string or buffer
os.systemからの戻り値は、プロセスの終了コードです。これは文字列ではなく整数であるため、基本的に次のようにします。
>>> re.findall(r'\w', 0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 177, in findall
return _compile(pattern, flags).findall(string)
TypeError: expected string or buffer
あなたが探している関数はsubprocess.check_outputだと思います:
>>> import subprocess
>>> print subprocess.check_output(['host', 'www.google.com'])
www.google.com has address 173.194.75.147
www.google.com has address 173.194.75.99
www.google.com has address 173.194.75.103
www.google.com has address 173.194.75.104
www.google.com has address 173.194.75.105
www.google.com has address 173.194.75.106
www.google.com has IPv6 address 2607:f8b0:400c:c03::6a