Posts by Lucas • 1 point
1 post
-
-5
votes1
answer22
viewsQ: Typeerror: not all Arguments converted During string formatting (what should I do?)
I’m solving a simple question of calculating tax on a salary: sal=float(input('digite o valor:')) if sal>3000: percent=0.25 elif sal>2000: percent=0.20 elif sal>1000: percent=0.10 else :…