Have you ever played old-school Pokemon and chosen a funny name so that the in-game messages would come out funny?

In Python, we can create strings that contain dynamic values with the f-string syntax.
num_bananas = 10
bananas = f"You have {num_bananas} bananas"
print(bananas)
# You have 10 bananas
f to the start of quotes to create an f-string: f"this is easy!"{} around a variable to interpolate (put) its value into the string.Fix the bug on line 7. Use an f-string to inject the dynamic values into the string:
NAME with the value of the name variableRACE with the value of the race variableAGE with the value of the age variableDo not "hard-code" the values into the string. For example, this is not the solution we're looking for (even though it happens to work in this case):
print("Yarl is a dwarf who is 37 years old.")
We need the player to see their values.
Punctuation and capitalization matters! Make sure your output matches the expected output exactly.