-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz_game.py
More file actions
36 lines (31 loc) · 1.05 KB
/
Copy pathquiz_game.py
File metadata and controls
36 lines (31 loc) · 1.05 KB
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
from pickletools import markobject
from yaml import Mark
print ('Welcome to Askpython Quiz')
answer=input('Are you ready to play the Quiz? (yes/no):')
score=0
total_questions=3
if answer.lower()=='yes':
answer=input('Question 1: What is your Favourite progamming language?')
if answer.lower()=='python':
score += 1
print('correct')
else:
print('Wrong Answer :(')
answer=input('Question 2: Do you follow any author on Askpython?')
if answer.lower()=='yes':
score +=1
print('correct')
else:
print('Wrong Answer :(')
answer=input('Question 3: What is the name of your Favourite website for learning Python?')
if answer.lower()=='askpython':
score +=1
print('correct')
else:
print('Wrong Answer :(')
else:
("You just exited AskPython Quiz game")
print('Thank you for playing this small quiz game, you attemted', score, "questions correctly!")
Mark = (score/total_questions)*100
print('Marks obtained: ', Mark)
print('BYE!')