Apr-27-2019, 01:01 PM
I am tring to pick 5 digits randomly( one line in one second) and display them om tkinter gui using either Label or Text widgets.
it works fine on python-idle(console) but ı need to know how to put them on Text widgets
it works fine on python-idle(console) but ı need to know how to put them on Text widgets

from tkinter import* import random import time wn=Tk() wn.title("myfirst-gui") wn.geometry("300x400") wn.configure(bg="pink") for i in range(5): mydigits=random.sample(range(1,30),5) print(mydigits) time.sleep(1) lb1=Label(bg="silver",text=mydigits,width=10) lb1.place(x=100,y=100) """label widgets displays only the last line so I tried the text widget but it doesnt work """ text_widget=Text(bg="green",fg="white") text_widget.insert('1.0', mydigits) text_widget.place(x=300,y=300) wn.mainloop()