#Author: Andrew Luxton-Reilly #Date: 7/05/06 #Ratio of NZD to USD currencyRatio = 0.6409 # 1 NZD = 0.6409 USD #Ask the user to enter the NZD value nzd = input("Please enter the dollar value (NZD): ") #Calculate the amount of USD usd = nzd * currencyRatio #Print the output to the user print nzd, "NZ dollars is worth", usd, "US dollars"