Run
# Given variables name = "Apple" age = 12 # Formatted string result = f"Name is {name}, and age is {age}." # Print resulting string print(result)
Output