Question
Must be answered with Python Programming language
A county collects property taxes on the assessment value of property, which is 60 percent of the propertys actual value. For example if an ace of land is valued at $10,000 it assessment value is $6,000. The property tax is then 72 cents for each $100 of the assessment value. The tax for the acre assessed at S6,000 will be $43.20. Write a program that asks for the actual value of the peice of property and displays the assessment and the property tax.
0 0
Add a comment Improve this question Transcribed image text
Answer #1
value=float(input('Enter actual value: '))
assessment=.6*value
property_tax=.72*assessment/100
print('Assessment tax:${:.2f}'.format(assessment))
print('Property tax:${:.2f}'.format(property_tax))

value-float (input (Enter actual value:)) assessment-·6 value 3 property_tax-.72 assessment/100 4 print (Assessment tax:s

Add a comment
Know the answer?
Add Answer to:
Must be answered with Python Programming language A county collects property taxes on the assessment value...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Acounty collects property taxes on the assessment value of property, which is 60 percent of the...

    Acounty collects property taxes on the assessment value of property, which is 60 percent of the property's actual value. For example, if an acre of land is valued at $10000, its assessment value is $6000. The property tax is 64 cents for each $100 of the assessment value. The tax acre assessed at $6000 will be $38.40. Design a modular program that ask for the actual value of a piece of property and displays the assessment value and property tax....

  • In python 3, A county collects property taxes on the assessment value of property, which is...

    In python 3, A county collects property taxes on the assessment value of property, which is 60% of the property's actual value. For example, if a property is valued a $50,000, it's assessment value is $30,000. The property tax is then $0.56 for each $100 of the assessment value. The tax for the property assessed at $30,000 will be $168.00. Write a function called propertyTax that takes a property's actual value and returns the property tax using 60% for the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT