-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I added the python file and the welcome screen picture (.jpg) to this repository
- Loading branch information
Showing
2 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
from tkinter import* | ||
from PIL import ImageTk, Image | ||
import os | ||
import datetime as dt | ||
detailed_report = ["Question | Answer | Correct Answer | Points"] | ||
score = [] | ||
questions = ['How do you print "Hello" in Python?', | ||
'A GUI window can be created in python with the _______ module', | ||
'How do you pick a random item from a list called "my_list"?', | ||
'An ___________ is a computer program that directly executes instructions written in a programming language', | ||
'How do you destroy a tkinter window when root = Tk()?'] | ||
answers = ['print("Hello")', | ||
'tkinter', | ||
'random.choice(my_list)', | ||
'interpreter', | ||
'root.destroy()'] | ||
|
||
quests = len(questions) | ||
window = Tk() | ||
window.title('Welcome') | ||
window2 = Tk() | ||
window2.title('Setup') | ||
name_label = Label(window2, text='What is your name?') | ||
name_entry = Entry(window2, fg="Black", bg="Yellow", width=50) | ||
next_but = Button(window2, padx=14,pady=14,bd=4,bg='orange',command=lambda:contin2(),text="Next >>>",font=("Courier New",16,'bold')) | ||
window2.withdraw() | ||
|
||
window3 = Tk() | ||
window3.title('Ready?') | ||
question = Label(window3, text='Every correct question earns you a point. Every incorrect one gives none. Good Luck!') | ||
butt = Button(window3, padx=14,pady=14,bd=4,bg='orange',command=lambda:contin3(),text="Next >>>",font=("Courier New",16,'bold')) | ||
window3.withdraw() | ||
tim = str(dt.datetime.now()) | ||
|
||
def cont(): | ||
window.destroy() | ||
window2.update() | ||
window2.deiconify() | ||
name_label.pack() | ||
name_entry.pack() | ||
next_but.pack() | ||
window2.mainloop() | ||
|
||
def contin2(): | ||
nameee = str(name_entry.get()) | ||
window2.destroy() | ||
question = Label(window3, text=nameee+', Every correct question earns you a point. Every incorrect one gives none. Good Luck!') | ||
question.pack() | ||
butt.pack() | ||
window3.update() | ||
window3.deiconify() | ||
|
||
def contin3(): | ||
window3.withdraw() | ||
contin4() | ||
|
||
def contin4(): | ||
window4 = Tk() | ||
window4.title('Questions') | ||
question2 = Label(window4, text=questions[0]) | ||
|
||
score_label = Label(window4, text= 'Score:' + str(len(score))) | ||
answer_entry = Entry(window4, fg="Black", bg="Yellow", width=50) | ||
butt2 = Button(window4, padx=14,pady=14,bd=4,bg='orange',command=lambda:window4.quit(),text="Next >>>",font=("Courier New",16,'bold')) | ||
question2.pack() | ||
score_label.pack() | ||
answer_entry.pack() | ||
butt2.pack() | ||
window4.mainloop() | ||
if (answer_entry.get() == answers[0]): | ||
print("Correct!") | ||
|
||
score.append(0) | ||
else: | ||
print("Incorrect! The correct answer is " + answers[0]) | ||
|
||
answers.pop(0) | ||
questions.pop(0) | ||
window4.destroy() | ||
if (0 < len(questions)): | ||
contin3() | ||
else: | ||
window3.destroy() | ||
file = open(str(dt.datetime.now())+' report.txt', "w") | ||
namu = "Hello! This report has been autogenerated from the results of the quiz in PyQuiz "+str(tim)+ " Your score is "+str(len(score))+"/"+str(quests)+" Thank you for answering PyQuiz's Quiz! We hope to see you again!" | ||
file.write(namu) | ||
file.close() | ||
img = ImageTk.PhotoImage(Image.open("Greet.jpg")) | ||
panel = Label(window, image = img) | ||
panel.pack(side = "top", fill = "both", expand = "yes") | ||
button = Button(window,padx=14,pady=14,bd=4,bg='orange',command=lambda:cont(),text="Continue >>>",font=("Courier New",16,'bold')) | ||
button.pack() | ||
window.mainloop() |