Transform to f-string

Transform the message string into an f-string. Include the variables name and age in the message string.
name = 'Alice' age = 30 # complete code here...
message = 'Hello, my name is {} and I am {} years old.'
print(message) # expected: 'Hello, my name is Alice and I am 30 years old.'
Python
Setting up Python environment...
Output