これが一致しない理由を誰か説明してもらえますか?
linesout = "test.host.com (10.200.100.10)"
pat = re.compile("\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}")
test = pat.match(linesout)
if test:
print "Acceptable ip address"
else:
print "Unacceptable ip address"
ありがとうございました