Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: How to calculate tax with a variable input and if else
Post: RE: How to calculate tax with a variable input and...

income = float(input("Enter the annual income: ")) if income <= 85528: tax = income *0.18 - 556.2 else: tax = (income - 85528)*0.32 + 14839.2 tax = round(tax, 0) print("The...
nave Homework 12 23,279 Mar-15-2024, 01:58 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020