Python 3.4.3中的全局变量

时间:2015-10-22 20:05:22

标签: python

我正在尝试显示每个税额的计算,但我尝试了几种不同的方式,我似乎无法得到输入,坚持每个模块,而不是一遍又一遍地问。因此,我正在尝试将输入设置为名为“Amount”的全局变量,但即使这样也会给我带来错误。

如果你们能告诉我应该怎么做才能解决它,我真的很感激!

是的,我尝试使用谷歌搜索/使用此论坛的搜索,但我没有发现任何适用于我的困境的事情。

def main():

    Amount = float(input())

    DollarAmount()
    StateTax()
    CountyTax()
    CityTax()
    return




def DollarAmount():

    print ("Please enter the purchase amount. You will be rewarded with the     beauty of knowledge.")
    return



def StateTax():

    Total = global Amount * 0.065 
    print("Your total state tax is " + str(Total) + ".")
    return



def CountyTax():

    Total = global Amount * 0.0125
    print("Your total county tax is " + str(Total) + ".")    
    return



def CityTax():

    Total = global Amount * 0.0075
    print("Your total city tax is " + str(Total) + ".")    
    return




main()

0 个答案:

没有答案