I cannot input a decimal as it comes up with this error
I've tried putting "float" function in different places
def Change():
Money = int(input("How Much Money Do You Want To Change For Cash? - "))
CoinType = int(input("What Type Of Coin Do You Want To Change Into? (1.00, 0.50, 0.20, 0.10, 0.05, 0.02, 0.01) - "))
float(CoinType)
if CoinType == 1:
print("You Will Get", Money / CoinType,"Coins")
if CoinType == 0.50:
print("You Will Get", Money / CoinType,"Coins")
It should come up with "You will get", Money / CoinType, "Coins"