I wrote this program for a class, the only problem is that it returns the anwser for assessmentValue twice.
I can't figure out what to do to fix it...please help!!
def main():
#Get the actual value for the property.
actualValue = input ("Enter the actual value of the property:$")
value = assessmentValue(actualValue)
#Get the assesment value of the property
assessmentValue(actualValue)
#Get the property tax amount
propertyTax(value)
#The assessmentValue module accepts the number for the actual value of the
#property and displays the assessment value.
def assessmentValue(actualValue):
assessmentValue = actualValue * .6
value = assessmentValue
print "The assessment value is:$ %1.2f" % assessmentValue
return value
#The propertyTax module accepts the number for the assessment value of the
#property and displays the property tax.
def propertyTax(value):
propertyTax = value / 100 * .64
print "The property tax is:$ %1.2f" % propertyTax
main ()