-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathquiz.py
90 lines (71 loc) · 2.51 KB
/
quiz.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
# List of questions for quiz
questions = [
'who is the developer of Python Language',
'when did india gets independence',
'what is the Indian currency',
'Who is World first cloned human baby',
'who is the founder of Hinduism'
]
# list of answers for above questions
answers = [
'Guido Van',
'1947',
'INR',
'Eve',
'No Specific'
]
# List of options for above questions
options = [
['Dennis Ritchie', 'Alan Frank', 'Guido Van', 'Albert'],
['1947', '1995', '1950', '1957'],
['DOLLARS', 'YEN', 'EURO', 'INR'],
['Erik', 'Maria', 'Sophie', 'Eve'],
['Mahavira Swami', 'Mahatma Buddha', 'No Specific', 'Prophet Mohammed']
]
# Quiz Game | Designed by Ishita
# Defining function for game playing
def play_game(username, questions, answers, options):
print("Hello,", username, "welcome to the QUIZ game")
print("All the Best for the Game :>")
score = 0
for i in range(5):
current_questions = questions[i]
# print(questions[i])
correct_answer = answers[i]
current_question_options = options[i]
print("Questions:", current_questions)
for index, each_options in enumerate(current_question_options):
print(index+1, ") ", each_options, sep='')
user_answer_index = int(input("Please enter your choice(1,2,3,4): "))
user_answer = current_question_options[user_answer_index-1]
if user_answer == correct_answer:
print("correct answer")
score = score + 100
else:
print("wrong answer")
break
print("Your final score is", score)
return username, score
# Defining function for viewing the score
def view_scores(names_and_scores):
for name, score in names_and_scores.items():
print(name, "has scored", score)
# Defining the function for start of the score
def quiz(questions, answers, options):
names_and_scores = {}
while True:
print("Welcome to the quiz game")
print("1) Play\n2) View Scores\n3) Exit")
choice = int(input("Please enter your choice: "))
if choice == 1:
username = (input("Please enter your name: "))
username, score = play_game(username, questions, answers, options)
names_and_scores[username] = score
elif choice == 2:
view_scores(names_and_scores)
elif choice == 3:
break
else:
print("Your choice is not correct")
# Program execution starts from here
quiz(questions, answers, options)