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