Question

In: Computer Science

A county collects property taxes on the assessment value of property, which is 60 percent of the property’s actual value.

python code with screenshot of code and output

Use a function for the taxes. Document all the constants.

what does the program do?

define variables

A county 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 $10,000, its assessment value is $6,000. The property tax is then 72¢ for each $100 of the assessment value. The tax for the acre assessed at $6,000 will be $43.20. Write a program that asks for the actual value of a piece of property and displays the assessment value and property tax

Solutions

Expert Solution

Code -

#function to calculate Assesment value and return it , it take property value as arguement
def getAssesmentValue(val):
#Assesment value is 60% of property tax
assementVal = (val * 60)/100
#return Assesment value
return assementVal;
  
#function to calculate property tax , it take Assesment value as parameter
def getPropertyTax(val):
#calculate propertyTax by dividing Assesment value by 100 and multipling by 72 cents
propertyTax = (val/100)*72;
#divide propertyTax by 100 to calculate it in $
return propertyTax/100;
  
def main():
#ask user to enter property value
propertyPrice = int(input("Please enter value of property: $"))
#get Assesment value take
assementValue = getAssesmentValue(propertyPrice)
#print Assesment value
print("Assesment Value is $"+str(assementValue))
#calculate propertyTax
propertyTax = getPropertyTax(assementValue)
#print property Tax
print("Property Tax is $"+str(propertyTax))
if __name__ == "__main__":
main()

Screenshots -


Related Solutions

Suppose a county tax collector collects property taxes on the assessed value of each piece of property in their county. Here are the tax collector's rules for taxes:
IN CSuppose a county tax collector collects property taxes on the assessed value of each piece of property in their county. Here are the tax collector's rules for taxes:Assessed value is calculated at the rate of 75% of the property's actual value.Homeowners who live at their property are provided with a $10,000 homeowner exception that further reduces their assessed value below the 75% level.Homeowners are allowed to be billed in quarterly installments if they live at their property.In the current...
Suppose a county tax collector collects property taxes on the assessed value of each piece of...
Suppose a county tax collector collects property taxes on the assessed value of each piece of property in their county. Here are the tax collector's rules for taxes: Assessed value is calculated at the rate of 75% of the property's actual value. Homeowners who live at their property are provided with a $10,000 homeowner exception that further reduces their assessed value below the 75% level. Homeowners are allowed to be billed in quarterly installments if they live at their property....
Solve this problem in C. Suppose a county tax collector collects property taxes on the assessed...
Solve this problem in C. Suppose a county tax collector collects property taxes on the assessed value of each piece of property in their county. Here are the tax collector's rules for taxes: Assessed value is calculated at the rate of 75% of the property's actual value. Homeowners who live at their property are provided with a $10,000 homeowner exception that further reduces their assessed value below the 75% level. Homeowners are allowed to be billed in quarterly installments if...
The city of Belle collects property taxes for other local governments—Beau County and the Landis Independent...
The city of Belle collects property taxes for other local governments—Beau County and the Landis Independent School District (LISD). The city uses a Property Tax Collection Custodial Fund to account for its collection of property taxes for itself, Beau County, and LISD. Prepare journal entries to record the following transactions and events for Belle’s Custodial Fund during calendar year 2019. 1. During 2019, property taxes were levied for Belle ($2,000,000), Beau County ($1,000,000) and LISD ($3,000,000). Assume taxes collected by...
1)The tax assessor collector collects county taxes. What is the main source of the taxes collected?...
1)The tax assessor collector collects county taxes. What is the main source of the taxes collected? With regard to taxes, what is a homestead exemption? ISD is ___________________________. What are the duties of the superintendent? What is a rollback election? Three of the ten largest cities in the U.S. are in Texas. What are the 3 cities? (You can see they are in Texas)
The county collector of Suncoast County is responsible for collecting all property taxes levied by funds...
The county collector of Suncoast County is responsible for collecting all property taxes levied by funds and governments within the boundaries of the county. To reimburse the county for estimated administrative expenses of operating the tax agency fund, the agency fund deducts 1.8 percent from the collections for the town, the school district, and the other towns. The total amount deducted is added to the collections for the county and remitted to the Suncoast County General Fund. The following events...
The county collector of Suncoast County is responsible for collecting all property taxes levied by funds...
The county collector of Suncoast County is responsible for collecting all property taxes levied by funds and governments within the boundaries of the county. To reimburse the county for estimated administrative expenses of operating the tax custodial fund, the custodial fund deducts 1.5 percent from the collections for the town, the school district, and the other towns. The total amount deducted is added to the collections for the county and remitted to the Suncoast County General Fund. The following events...
The county collector of Suncoast County is responsible for collecting all property taxes levied by funds...
The county collector of Suncoast County is responsible for collecting all property taxes levied by funds and governments within the boundaries of the county. To reimburse the county for estimated administrative expenses of operating the tax agency fund, the agency fund deducts 3.5 percent from the collections for the town, the school district, and the other towns. The total amount deducted is added to the collections for the county and remitted to the Suncoast County General Fund. The following events...
During the current year, Knoxx County levied property taxes of $2,000,000, of which 1% is expected...
During the current year, Knoxx County levied property taxes of $2,000,000, of which 1% is expected to be uncollectible. The following amounts were collected during the current year: Prior year taxes collected within the first 60 days of the current year $     50,000 Prior year taxes collected between 60 and 90 days into the current year 120,000 Current year taxes collected in the current year 1,800,000 Current year taxes collected within the first 60 days of the subsequent year 80,000 What...
15.      You have purchased a duplex property for $275,000. The property’s assessed value was $200,000,...
15.      You have purchased a duplex property for $275,000. The property’s assessed value was $200,000, of which $140,000 is for improvements and $60,000 is for land. The property was purchased on the first day of the tax year. What is the cost recovery for the year of acquisition? a. 4,000 b. 6,709 c. 5,156 d. 275,000 16.       Cost Recovery Deduction depends on the useful economic life of an asset defined by the IRS. The class life of residential real...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT