from tkinter import*
root = Tk()
root['bg'] = 'dark blue'
root.title = ('Quiz')
root.mainloop()
I have tried to think of alot of solutions but they dont possibly work. Can someone help?
>Solution :
Use
root.title('Quiz')
instead of
root.title = ('Quiz')