-
Notifications
You must be signed in to change notification settings - Fork 0
/
Quiz.py
49 lines (42 loc) · 1.22 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
# Aufbau eines Simplen Quiz mit Python
print("Willkommen zum Quiz!")
spielen = input("Willst du mitspielen? ")
# kommt als Antwort ja, wird das Spiel gestartet, sonst wird es beendet.
if spielen.lower() != "ja":
quit()
# Fragen und Antworten
print("Okay! Lass uns spielen :)")
punkte = 0
antwort = input("Was ist eine CMD in Windows ? ")
if antwort.lower() == "kommandozeileneingabe":
print('Richtg!')
punkte +=1
else:
print("Falsch!")
antwort = input("Was ist eine GPU ? ")
if antwort.lower() == "graphic-processing unit":
print('Richtg!')
punkte += 1
else:
print("Falsch!")
antwort = input("Welches Sprache spricht man in der Schweiz ? ")
if antwort.lower() == "schweizerdeutsch":
print('Richtg!')
punkte += 1
else:
print("Falsch!")
antwort = input("Wieviele Bundesländer hat Deutschland ? ")
if antwort.lower() == "16":
print('Richtg!')
punkte += 1
else:
print("Falsch!")
antwort = input(" Was ist eine RAM? ")
if antwort.lower() == "psu":
print('Richtg!')
punkte += 1
else:
print("Falsch!")
# Ausgabe der Punktzahl der richtig beantworteten Fragen in % und in Dezimalzahlen
print("Du hast " + str(punkte) + "Fragen richtig !")
print("Du hast " + str((punkte/5) *100) + "%.")