从文本文件配置标签时出错

时间:2018-11-28 00:42:01

标签: python tkinter

您好,我想根据文件中的文本配置标签,但是什么也没有发生。为什么呢这是我的代码:

#function operated by a button 
def add(ligne,labelP):
    if "Diffusion" in ligne:
        labelP.config(text="DiffOk")

#in the Frame "fr"
input = open('precipitation.txt','r+')
for ligne in input:
    ligne=ligne.split()
    labelP=Label(fr,text=ligne)
    labelP.grid(sticky=N+E)

 >>precipitation.txt :
 Diffusion
 Coeff_diffusion-atom1...(cm2/s)    
 Coeff_diffusion-atom2...(cm2/s)    
 Coeff_diffusion-atom3...(cm2/s)    
 ...

谢谢

1 个答案:

答案 0 :(得分:0)

split返回一个列表,这可能是问题所在,您不需要拆分ligne