Can someone help with my python code?
EUR = 1 USD = 1.13798 GBP = 0.857679 RUB = 74.9470 def currencyConverter(): chosenCurrency = input("Do you wish to convert your euros to \n1)USD \n2)RUB \n3)GBP\n------------------------------------\n") print (chosenCurrency, "\n------------------------------------\n") #USD if (chosenCurrency) == "1" eurAmount = input("How many euros do you wish to convert into USD?\n------------------------------------") print((eurAmount) * 1.13798) #RUB elif (chosenCurrency) == "2" eurAmount = input("How many euros do you wish to convert into RUB?\n------------------------------------") print((eurAmount) * 74.9470) #GBP elif (chosenCurrency) == "3" eurAmount = input("How many euros do you wish to convert into GBP?\n------------------------------------") print((eurAmount) * 0.857679) #Error else print ("Error, please try again. Enter 1, 2 or 3") currencyConverter() https://code.sololearn.com/cBEH23DcmATx/#py