-
Notifications
You must be signed in to change notification settings - Fork 22
/
QUIZ.py
40 lines (33 loc) · 1.08 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
print('Welcome to the Python Quiz')
answer=input('Are you ready to play the Quiz ? (yes/no) : ')
score=0
total_questions=4
if answer.lower()=='yes':
answer=input('Question 1: What is the capital of Australia? ')
if answer.lower()=='canberra':
score += 1
print('correct')
else:
print('Wrong Answer :(')
answer=input('Question 2: Have you got the vaccine? ')
if answer.lower()=='yes':
score += 1
print('correct')
else:
print('Wrong Answer :(')
answer=input('Question 3: Which is the smallest continent? ')
if answer.lower()=='australia':
score += 1
print('correct')
else:
print('Wrong Answer :(')
answer=input('Question 4: Which is the largest state in India? ')
if answer.lower()=='rajasthan':
score += 1
print('correct')
else:
print('Wrong Answer :(')
print('Thankyou for Playing this small quiz game, you attempted',score,"questions correctly!")
mark=(score/total_questions)*100
print('Marks obtained:',mark)
print('Thanks for playing !')