mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-16 21:11:00 +03:00
3 lines
76 B
Python
3 lines
76 B
Python
def show_employee(name, salary=100000):
|
|
return f"{name}: {salary} ₽"
|
|
|