-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
52 lines (51 loc) · 1.29 KB
/
main.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
#quiz game
Quiz = {
'question1':{
"question": 'What is the maximum length of a Python identifier?',
"answer": "No fixed len"
},
'question2':{
"question":"PVM stands for?",
"answer": "Python visual Machine"
},
"question03":{
"question":"Tuple is a mutable or immutable?",
"answer": "immutable"
},
"question04":{
"question":"string is a mutable or immutable?",
"answer": "immutable"
},
"question05":{
"question":"list is a mutable or immutable?",
"answer": "mutable"
},
"question06":{
"question":"list is a mutable or immutable?",
"answer": "mutable"
},
"question07":{
"question":"Dict is a mutable or immutable?",
"answer": "Both"
},
}
score= 0
for key,value in Quiz.items():
print(value["question"])
answer= input("Answer: ")
if answer.lower() == value['answer'].lower():
print("Correct ")
print("")
score+=1
print('Your score is:' + str(score))
print(" ")
else:
print("Wrong")
print("Correct answer is:" + value['answer'])
print('your score is:' + str(score))
print("")
print("You got " + str(score)+ " out of 7 ")
if score==7:
print("Wow!!! Your percentage " + str(int(score / 7 * 100)) + "%")
else:
print( "Your percentage " + str(int(score/7 *100))+ "%")