Variabel cetak python menggunakan f-string dalam pernyataan cetak

# 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