Python Project – Currency Converter
Program 1 # Currency Covert Project from forex_python.converter import CurrencyRates def currency_covert(): c=CurrencyRates() try: print(“————Currency Covertor——————-“) from_currency=input(“Enter base currency(i.e USD INR EUR)”) target_currency=input(“Enter target currency(i.e USD INR EUR)”) str=”Enter an amount in {} currency...

