Python 3.4-无法将特定行读入框中

时间:2018-05-27 10:03:37

标签: python python-3.4

我无法弄清楚如何从文本文件中读取特定行,读取位不是问题,而是将该特定行插入到框中。我得到了这个似乎是方向的一步,但我需要帮助来解决这个问题,因为它没有将数据读入框中。

def show_team():
    with open("data/tournamentdatae1.txt",'r') as f:
     event = combo_event.get()
     get_all=f.readlines()
     result =f.readline()

     if event == 'Event 1': 
           with open('data/tournamentdatae1.txt', 'r') as f: 
              for i,line in enumerate(get_all,1):
                    if i == 1: 
                        team_1txt.insert(0.0, result)

1 个答案:

答案 0 :(得分:0)

尝试:

with open("data/tournamentdatae1.txt",'a') as f:

w - 写:它会覆盖

a - 追加:它会追加