-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7_3_TurniejWiedzy.py
98 lines (69 loc) · 2.62 KB
/
7_3_TurniejWiedzy.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Turniej wiedzy
# Gra sprawdzająca wiedzę ogólną, odczytująca dane ze zwykłego pliku tekstowego
import sys
def open_file(file_name, mode):
"""Otworz plik."""
try:
the_file = open(file_name, mode)
except IOError as e:
print("Nie mozna otworzyc pliku {}. Program zostanie zakonczony!\n{}".format(file_name, e))
input("Aby zakończyć program, nacisnij klawisz Enter!")
sys.exit()
else:
return the_file
def next_line(the_file):
"""Zwróc kolejny wiersz pliku po sformatowaniu go"""
line = the_file.readline()
line = line.replace("/", "\n")
return line
def next_block(the_file):
"""Zwróć kolejny blok danych z pliku"""
category = next_line(the_file)
question = next_line(the_file)
answers = []
for i in range(4):
answers.append(next_line(the_file))
correct = next_line(the_file)
if correct:
correct = correct[0]
score_range = next_line(the_file)
explanation = next_line(the_file)
return category, question, answers, correct, score_range, explanation
def welcome(title):
"""Przywitaj gracza i pobierz jego nazwę"""
print("\t\t Witaj w turnieju wiedzy!\n")
print("\t\t {} \n".format(title))
name = input("Powiedz nam jak się nazywasz... ")
print("Dzień dobry {}".format(name))
return name
def save_score(file_name, user_name, score):
the_score_file = open_file(file_name, 'a')
the_score_file.write("{} {}\n".format(user_name, score))
the_score_file.close()
print("Wyniki dla {} został dodane do listy!".format(user_name))
def main():
trivia_file = open_file('kwiz71.txt', 'r')
title = next_line(trivia_file)
name = welcome(title)
score = 0
category, question, answers, correct, score_range, explanation = next_block(trivia_file)
while category:
print(category)
print(question)
for i in range(4):
print("\t {}. {}".format(i+1, answers[i]), end=" ")
answer = input("{} jaka jest Twoja odpowiedź?: ".format(name))
if answer == correct:
print("\nOdpowiedź prawidłowa!", end=" ")
score += int(score_range)
else:
print("\nOdpowiedź niepoprawna!", end=" ")
print(explanation)
print("Wynik: {} \n\n".format(score))
category, question, answers, correct, score_range, explanation = next_block(trivia_file)
trivia_file.close()
save_score('score73.txt', name, score)
print("To było ostatnie pytanie!")
print("Twój końcowy wynik wynosi: {}!".format(score))
main()
input("Aby zakończyć program, naciśnij klawisz Enter!")