0
我試圖將powershell輸出重定向到Tkinter中的文本框中。我特別想從命令提示符處打印語句。有誰知道我可以怎麼做呢?我跟着this但它不會打印到文本框中。將命令提示符重定向到tkinter
我最後的作用是這樣的:
def start_script():
os.system('python Script.py')
p = sub.Popen('python ./Script.py', stdout=sub.PIPE, stderr=sub.PIPE)
output, errors = p.communicate()
while True:
for line in output:
text.insert(END, line)
這可能是因爲它運行的腳本,然後去打印出來的,而真正的語句,但我只是猜測。請有人指點我正確的方向嗎?