7 lines
161 B
Python
7 lines
161 B
Python
# program, który użyje funkcji z plik_funkcji
|
|
|
|
from plik_funkcji import *
|
|
|
|
imie = input("Podaj swoje imię: ")
|
|
powitanie = funkcja(imie)
|
|
print(f"{powitanie=}") |