Commit 5ed203ee by Patryk Czarnik

powtorz_tekst

parent 8b9f9cef
tekst = input('Wpisz linię tekstu:\n')
ile_razy = int(input('Ile razy powtórzyć ten tekst? '))
# Teraz program ma wypisać podany tekst tyle razy, ile chciał użytkownik
for i in range(ile_razy):
print(tekst)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment