80.2k views
16 votes
.WAP to enter monthly sale of Salesman and give him commission i.E. If the monthly sale is more than 500000 then commision will be 10% of monthly sale otherwise 5%

1 Answer

9 votes

sales = float(input("Enter monthly sales amount: $"))

commission = 0.05

if sales> 500000:

commission = 0.1

print("You earned: $"+str(sales*commission))

I wrote my code in python 3.8. I hope this helps.

User Sgibly
by
3.0k points