Skip to content

Commit 56ee874

Browse files
committed
final commit
1 parent 0772e71 commit 56ee874

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

quiz_game.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
print('Welcome to AskPython Quiz')
2+
answer=input('Are you ready to play the Quiz ? (yes/no) :')
3+
score=0
4+
total_questions=3
5+
6+
if answer.lower()=='yes':
7+
answer=input('Question 1: What is your Favourite programming language?')
8+
if answer.lower()=='python':
9+
score += 1
10+
print('correct')
11+
else:
12+
print('Wrong Answer :(')
13+
14+
15+
answer=input('Question 2: Do you follow any author on AskPython? ')
16+
if answer.lower()=='yes':
17+
score += 1
18+
print('correct')
19+
else:
20+
print('Wrong Answer :(')
21+
22+
answer=input('Question 3: What is the name of your favourite website for learning Python?')
23+
if answer.lower()=='askpython':
24+
score += 1
25+
print('correct')
26+
else:
27+
print('Wrong Answer :(')
28+
29+
print('Thankyou for Playing this small quiz game, you attempted',score,"questions correctly!")
30+
mark=(score/total_questions)*100
31+
print('Marks obtained:',mark)
32+
print('BYE!')

0 commit comments

Comments
 (0)