#Justin Ellis #CNE330 #6/16/2021 #https://thecleverprogrammer.com/2021/01/27/real-time-currency-converter-with-python/ #https://www.tutorialspoint.com/python/number_round.htm#:~:text=Python%20Number%20round%20%28%29%20Method%201%20Description.%20Python,example%20shows%20the%20usage%20of%20round%20%28%29%20method. from forex_python.converter import CurrencyRates c = CurrencyRates() amount = int(input("Enter the amount: ")) from_currency = input("From Currency: ").upper() to_currency = input("To Currency: ").upper() print(from_currency, " To ", to_currency, amount) result = c.convert(from_currency, to_currency, amount) print(round(result,2))