import re
import subprocess
sub = subprocess.Popen(['/home/karthik/Downloads/stanford-parser-2011-06- 08/lexparser.csh'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr = subprocess.PIPE)
sub.stdin.write("i am a fan of ac milan which is the best club in the world")
relns = []
while(True):
rel = sub.stdout.readline()
m = re.search("Sentence skipped", rel)
if m != None:
print 'stop'
sys.exit(0)
if rel == '\n':
break
relns.append(rel)
print relns
sub.terminate()
所以我想使用 stanford 解析器并使用 lexparser.csh 来解析这行文本。但是当我运行这段代码时,我得到了默认文本的输出。给出的实际文本没有被解析。那么我是否以正确的方式使用管道?而且我在很多示例中都看到过 - '-' 与命令一起使用。为什么要使用它?因为当我使用该脚本时,脚本只是停在 sub.stdout.readline()