forked from rishidhamija/pythoniffie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rock_scissors_paper.py
78 lines (61 loc) · 1.94 KB
/
rock_scissors_paper.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import random
import time
computer_antworten = ['Schere', 'Stein', 'Papier',]
end_abfrage = "y"
print("Willkommen zu Schere, Stein, Papier")
time.sleep(1)
eingabe_spieler = input("Wähle [1] Schere [2] Stein [3] Papier")
if eingabe_spieler == "1":
print("Du hast Schere ausgewählt!")
time.sleep(1)
print("Nun wählt der Computer!")
time.sleep(1)
antwort_auf_schere = random.choice(computer_antworten)
print("Er wählt:")
time.sleep(1.5)
print(antwort_auf_schere)
if antwort_auf_schere == 'Schere':
time.sleep(0.5)
print("**Unentschieden!**")
elif antwort_auf_schere == 'Stein':
time.sleep(0.5)
print("**Du hast Verloren!**")
else:
time.sleep(0.5)
print("**Du hast Gewonnen!**")
if eingabe_spieler == "2":
print("Du hast Stein ausgewählt!")
time.sleep(1)
print("Nun wählt der Computer!")
time.sleep(1)
antwort_auf_stein = random.choice(computer_antworten)
print("Er wählt:")
time.sleep(1.5)
print(antwort_auf_stein)
if antwort_auf_stein == 'Schere':
time.sleep(0.5)
print("**Du hast Gewonnen!**")
elif antwort_auf_stein == 'Stein':
time.sleep(0.5)
print("**Unentschieden!**")
else:
time.sleep(0.5)
print("**Du hast verloren!**")
if eingabe_spieler == "3":
print("Du hast Papier ausgewählt!")
time.sleep(1)
print("Nun wählt der Computer!")
time.sleep(1)
antwort_auf_papier = random.choice(computer_antworten)
print("Er wählt:")
time.sleep(1.5)
print(antwort_auf_papier)
if antwort_auf_papier == 'Schere':
time.sleep(0.5)
print("**Du hast Verloren!**")
elif antwort_auf_papier == 'Stein':
time.sleep(0.5)
print("**Du hast Gewonnen!**")
else:
time.sleep(0.5)
print("**Unentschieden!**")