Variable de impresión de Python utilizando la F-String en la declaración de impresión

# print statement using f-string
first_name = "Bing"
last_name = "Chandler"
age =25
print(f"The full name of the Employee is {last_name} {first_name} and the age is {age} ")
Gorgeous Gazelle