Python -Druckvariable unter Verwendung von Comma, Zeichen, um die Variablen in einer Druckanweisung zu trennen

# printing string with print statement using comma ","
first_name = "Bing"
last_name = "Chandler"
print("The full name of the Employee is ", last_name, first_name)
Gorgeous Gazelle