Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#Get the purchase amount purchaseAmount = float ( input ( Enter the amount of a purchase: ) ) #Assign the value to State sales

#Get the purchase amount
purchaseAmount = float(input("Enter the amount of a purchase:"))
#Assign the value to State sales tax percentage
Statesalestaxpercentage =0.05
#Assign the value to county sales tax percentage
countysalestaxpercentage =0.025
#Calculate the state sales tax
statesalestax = purchaseAmount * Statesalestaxpercentage
#Calculate the county sales tax
countysalestax = purchaseAmount * countysalestaxpercentage
#Calculate the total sales tax
Totalsalestax = statesalestax + countysalestax
#Calculate the total of the sale
Totalofthesale = purchaseAmount + Totalsalestax
#Display the required output
print("The amount of the purchase:",purchaseAmount)
print("The state sales tax:",statesalestax)
print("The county sales tax:",countysalestax)
print("The total sales tax:",Totalsalestax)
print("The total of the sale:",Totalofthesale)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Apache Cassandra Development

Authors: Vivek Mishra

1st Edition

1484201426, 9781484201428

More Books

Students also viewed these Databases questions

Question

What is block ownership? How does it affect corporate governance?

Answered: 1 week ago