3

我在我的 python 脚本中使用一个子进程来打开一个.bat文件。这个.bat文件生成很长的行,我想实时打印到控制台。

问题是这些行有时很长,以至于它们不适合缓冲区。无论如何,我该怎么做才能打印这些行?如果逐行打印,是否可以逐字打印?

这是我所做的:

p = subprocess.Popen("testfile.bat", stdin=subprocess.PIPE)
p.stdin.write("\r\n") # Some basic setup (simulated keypress)
p.stdin.close() 

# The actual print loop
for line in iter(p.stdout.readline, ''):
        line = line.replace('\r', '').replace('\n', '')
        print(line)
        sys.stdout.flush()
4

1 回答 1

2

您可以删除此行,不需要它:

line = line.replace('\r', '').replace('\n', '')

如果您想逐字打印,请执行以下操作:

for line in iter(p.stdout.readline, ''):
    for word in line.split():
        print(word)
    sys.stdout.flush()
于 2013-09-12T13:59:17.910 回答