Hi, thanks for your reply. This is the code I've been trying with. I can write a variable on the window but I haven't been able to start with a default value then change it through the entry widget. Please help it is driving me crazy.
Code:
from Tkinter import *
master = Tk()
master.title("test")
w = Canvas(master, width=500, height=500)
w.pack()
w.config(background="black")
Leave a comment: