0
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?

1 Answers1

0

Use

root.title('Quiz')

instead of

root.title = ('Quiz')
mkrieger1
  • 19,194
  • 5
  • 54
  • 65
S.Uzair
  • 18
  • 3