PYTHON QUIZ GAME GUI FROM SHRIHITH A
PYTHON QUIZ GAME GUI FROM SHRIHITH A import tkinter from tkinter import * from tkinter import font import random questions = [ "Total keywords in python ?" , "which of the following function takes A console in python ?" , "Output of 2**3 ?" , "Which of the following is must to execute a python code ?" , "Output of np.arrange(1,5) ?" , "The append Method adds value to the list at the ?" , "Keyword use to declare function ?" , "Output of 2*21 ?" , "Which of the following keyword is used to create a function in Python ?" , "To Declare a Global variable in python we use the keyword ?" , ] answer_choice = [ [ '33' , '31' , '30' , '32' ], [ 'get()' , 'input()' , 'gets()' , 'scan()' ], [ '6' , '8' , '9' , '12' ], [ 'TURBO c' ...