I have an exercise where they give us 2 categories (A,B), each category has an increase in salary. Category A increases 1%, Category B increases 1.5%. I was thinking in this:
salary = float(input("whats your salary? "))
Category = input("whats your category(A,B)? ")
final_salary = salary + (salary* #the category chosen)
How can i redirect the category chosen so it can multiply for the salary??