Python ListBox And TextBox
Python ListBox And TextBox def saver_button(): st=text_frm1.get("1.0",END) with open("records.txt","a") as file: file.write(st) text_frm1.delete(1.0,END) with open("ListAdd.txt","a") as dosya: k=IntVar() k=lstBx.size() i=0 for i in range(0,k): temp=lstBx.get(i) dosya.write(temp) dosya.write("\n") lstBx.delete("0",END) text_frm1 : Text widg...