-
Notifications
You must be signed in to change notification settings - Fork 0
/
SuperHeroQuiz.py
66 lines (54 loc) · 2.88 KB
/
SuperHeroQuiz.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import tkinter as tk
from tkinter import messagebox
class SuperheroQuizApp:
def __init__(self, root):
self.root = root
self.root.title("Superhero Quiz for Kids")
# Wynik i numer pytania
self.score = 0
self.question_number = 0
# Lista pytań o superbohaterach
self.questions = [
{"question": "Który superbohater nosi pelerynę?", "options": ["Iron Man", "Superman", "Spider-Man", "Hulk"], "answer": "Superman"},
{"question": "Który bohater jest miliarderem?", "options": ["Batman", "Thor", "Flash", "Wonder Woman"], "answer": "Batman"},
{"question": "Który superbohater posiada tarczę?", "options": ["Spider-Man", "Captain America", "Wolverine", "Aquaman"], "answer": "Captain America"},
{"question": "Który bohater został ukąszony przez radioaktywnego pająka?", "options": ["Iron Man", "Spider-Man", "Hulk", "Batman"], "answer": "Spider-Man"},
{"question": "Który bohater zamienia się w ogromnego zielonego stwora?", "options": ["Thor", "Flash", "Hulk", "Doctor Strange"], "answer": "Hulk"},
]
# Interfejs użytkownika
self.question_label = tk.Label(root, text="", font=('Helvetica', 14), wraplength=400)
self.question_label.pack(pady=20)
self.option_buttons = []
for i in range(4):
button = tk.Button(root, text="", font=('Helvetica', 12), width=30, command=lambda i=i: self.check_answer(i))
button.pack(pady=5)
self.option_buttons.append(button)
# Start gry
self.next_question()
def next_question(self):
"""Załaduj następne pytanie do interfejsu."""
if self.question_number < len(self.questions):
current_question = self.questions[self.question_number]
self.question_label.config(text=current_question["question"])
for i, option in enumerate(current_question["options"]):
self.option_buttons[i].config(text=option)
else:
self.show_score()
def check_answer(self, chosen_option_index):
"""Sprawdź poprawność odpowiedzi i przejdź do kolejnego pytania."""
correct_answer = self.questions[self.question_number]["answer"]
chosen_answer = self.option_buttons[chosen_option_index].cget("text")
if chosen_answer == correct_answer:
self.score += 1
self.question_number += 1
self.next_question()
def show_score(self):
"""Wyświetl końcowy wynik i zapytaj, czy gracz chce zagrać ponownie."""
messagebox.showinfo("Koniec gry", f"Twój wynik: {self.score}/{len(self.questions)}")
self.question_number = 0
self.score = 0
self.next_question()
# Inicjacja aplikacji tkinter
root = tk.Tk()
quiz_app = SuperheroQuizApp(root)
root.mainloop()