def func(liczba, tekst):
return tekst[:liczba]
liczbaa = int(input("Podaj liczbę: "))
tesktt = str(input("Podaj ciąg znaków: "))
print(func(liczbaa,tesktt))
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
def func(liczba, tekst):
return tekst[:liczba]
liczbaa = int(input("Podaj liczbę: "))
tesktt = str(input("Podaj ciąg znaków: "))
print(func(liczbaa,tesktt))