快速項目摘要:使用Tkinter製作一個python窗口小部件,顯示來自多個json和txt文件的數據。需要在Windows中工作。 我在哪裏在:一切都很好與json文件。但是我遇到了txt文件的麻煩。我可以分析,我需要一些必要的文件,此代碼的信息:獲取命令窗口輸出,以使用tkinter顯示在窗口小部件中
from Tkinter import *
import re
results = open("sample_results.txt", "r")
for line in results:
if re.match("(.*)test(.*)", line):
print line
if re.match("(.*)number(.*)", line):
print line
if re.match("(.*)status(.*)", line):
print line
if re.match("(.*)length(.*)", line):
print line
問題:它不顯示在一個單獨的部件在命令shell中的所有數據。
我想簡單地將所有這些信息從命令shell移動到文本框小部件(或tkmessage小部件,但我覺得文本框會更合適)。一個非常長的谷歌搜索過程給了我很多代碼不起作用 - 任何提示?謝謝!
注:這是不是所有的代碼 - 只是我需要幫助固定
出於某種原因,我無法得到你的第一個建議'self.textbox.insert(tkinter.END,parsed_text'''正常工作,但你的'更靈活'的方法運行得非常好,非常感謝你的幫助! – Isa