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