exchange_rate = 0.843216 # Euro to USD exchange rate
euros = 580
# Complete the following line...
message = 'At the current exchange rate, €{} is worth ${}.'
print(message)
# expected: 'At the current exchange rate, €580 is worth $489.07.'
Python
Setting up Python environment...
Output