Format number with f-strings

Transform the message string into an f-string and embed the correct exchange value. Format the result to 2 decimal places using format specifiers in the f-string.
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