Only 5 currencies are to be used in a python currency converter tool––(USD, EUR, CAD, GBP, and CHF). If user inputs a different currency in convertFrom or convertTo, how do I add an error message informing user to try again?
Conversion
convertFrom = input("What currency would you like to convert from? ")
amount = int(input("How much of that currency would you like to convert? "))
convertTo = input("Which currency would you like to convert to? ")