15 lines
373 B
Python
15 lines
373 B
Python
# funkcje, które będą użyte w programie
|
|
|
|
def funkcja(parametr: str) -> str:
|
|
"""
|
|
Docstring for funkcja - przywitanie
|
|
|
|
:param parametr: Tu podaj swoje imię
|
|
:type parametr: str
|
|
:return: A ja się ładnie przywitam
|
|
:rtype: str
|
|
"""
|
|
powitanie = f"Witam cię {parametr.capitalize()} serdecznie"
|
|
return powitanie
|
|
|
|
print(funkcja("adam")) |