Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- experience = int(input())
- specialty = input()
- salary = 0.0
- if specialty == "C# Developer":
- salary = 5400
- elif specialty == "Java Developer":
- salary = 5700
- elif specialty == "Front-End Web Developer":
- salary = 4100
- elif specialty == "UX / UI Designer":
- salary = 3100
- elif specialty == "Game Designer":
- salary = 3600
- if experience <= 5:
- salary -= salary * 0.658
- print(f"Total earned money: {salary * 12:.2f} BGN")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement