Here's how to create an interactive quiz that submits the answer and turns the submit button green for right answers and red for incorrect answers
Code:
import tkinter as tk
root = tk.Tk()
root.geometry ( " 700x500 " )
root.configure ( bg = " light blue " )
label1 = tk.Label ( root,text = " QUIZ GAME " , font = ( " Times new roman " , 50 ) , bg = " black " , fg = " white " )
label1.pack()
label2 = tk.Label ( root,text = "How many planets are in the solar system? " , font = ( " Times new roman " , 15 ) )
label2.place ( x = 0 , y = 200 )
def sub():
value1 = int ( entry1.get() )
if ( value1 == 8 ):
button1.configure ( bg = " green " )
else:
button1.configure ( bg = " red " )
entry1 = tk.Entry ( root )
entry1.place ( x = 390 , y = 205 )
button1 = tk.Button ( root , text = " Submit " , command = sub )
button1.place ( x =580 , y = 200 )
label3 = tk.Label ( root , text = " How many hours are in a day? " , font = ( " Times new roman " , 15 ) )
label3.place ( x = 0 , y = 250 )
def sub1():
value1 = int ( entry2.get() )
if ( value1 == 24 ) :
button2.configure ( bg = " green " )
else:
button2.configure ( bg = " red " )
entry2 = tk.Entry ( root )
entry2.place ( x = 390 , y =255 )
button2 = tk.Button ( root , text = " Submit " , command = sub1 )
button2.place ( x = 580 , y = 250 )
label4 = tk.Label ( root , text = " How many days are in a leap year? " , font = ( " Times new roman " , 15 ) )
label4.place ( x = 0 , y = 300 )
def sub2():
value1 = int ( entry3.get() )
if ( value1 == 366 ) :
button3.configure ( bg = " green " )
else:
button3.configure ( bg = " red " )
entry3 = tk.Entry ( root )
entry3.place ( x = 390 , y = 305 )
button3 = tk.Button ( root , text = " Submit " , command = sub2 )
button3.place ( x = 580 , y = 300 )
label5 = tk.Label ( root , text = " How many single digit positive integers exist? " , font = ( " Times new roman " , 15 ) )
label5.place ( x = 0 , y = 350 )
def sub3():
value1 = int ( entry4.get() )
if ( value1 == 10 ) :
button4.configure ( bg = " green " )
else:
button4.configure ( bg = " red " )
entry4 = tk.Entry ( root )
entry4.place ( x = 390 , y = 355 )
button4 = tk.Button ( root , text = " Submit " , command = sub3 )
button4.place ( x = 580 , y = 350 )
label6 = tk.Label ( root , text = " Differentiation of constants is? " , font = ( " Times new roman " , 15 ) )
label6.place ( x = 0 , y = 400 )
def sub4():
value1 = int ( entry5.get() )
if ( value1 == 0 ) :
button5.configure ( bg = " green " )
else:
button5.configure ( bg = " red " )
entry5 = tk.Entry ( root )
entry5.place ( x = 390 , y = 405 )
button5 = tk.Button ( root , text = " Submit " , command = sub4 )
button5.place ( x = 580 , y = 400 )
root.mainloop()
0 Comments