-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
35 lines (28 loc) · 823 Bytes
/
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
from pierwszyetap import *
def start():
imie = input("Podaj swoje imie: ")
plik = open("przywitanie.txt", "r")
print(plik.read())
plik.close()
while True:
ready = input("Czy jestes gotowy/a do rozpoczecia gry, " + imie + "? (tak/nie)\n> ")
if ready.lower() == "tak":
clear()
time.sleep(1)
print("Pora na suchara: ")
time.sleep(1)
sucharek = suchar()
print(sucharek[0])
time.sleep(2)
print(sucharek[1][1:])
time.sleep(2)
print("\n*smianie sie mp3*")
time.sleep(2)
pierwszy_etap(imie)
break
elif ready.lower() == "nie":
print("No to do widzenia :)")
break
start()
while True:
w = input("")