This commit is contained in:
2025-12-18 11:29:39 +01:00
parent 465475b33b
commit 0c7e117306
2 changed files with 11 additions and 2 deletions

View File

@@ -9,4 +9,7 @@ def funkcja(parametr: str) -> str:
:return: A ja się ładnie przywitam :return: A ja się ładnie przywitam
:rtype: str :rtype: str
""" """
powitanie = f"Witam cię {parametr.capitalize()} serdecznie"
return powitanie
print(funkcja("adam"))

View File

@@ -1 +1,7 @@
# program, który użyje funkcji z plik_funkcji # program, który użyje funkcji z plik_funkcji
from plik_funkcji import *
imie = input("Podaj swoje imię: ")
powitanie = funkcja(imie)
print(f"{powitanie=}")