pong
This commit is contained in:
16
dzien_01/d_02.py
Normal file
16
dzien_01/d_02.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from time import sleep
|
||||
|
||||
imie = "cosik"
|
||||
print(f"Siemanko: {imie}")
|
||||
|
||||
while True:
|
||||
print("To jest wewnątrz pętli")
|
||||
sleep(1)
|
||||
print("po czekaniu")
|
||||
dana = input("Podaj swoje imie:")
|
||||
print(f"Hej: {dana}")
|
||||
if dana == "Q":
|
||||
break
|
||||
print("koniec")
|
||||
|
||||
print("A to?")
|
||||
Reference in New Issue
Block a user