Answers for "Python Print Variable Using the + operator to join variables"

0

Python Print Variable Using the + operator to join variables

# print statement using the + character
first_name = "Bing "
last_name = "Chandler "
age =25
print("The full name of the Employee is " +last_name + first_name +" and the age is "+str(age))
Posted by: Guest on January-26-2022

Code answers related to "Python Print Variable Using the + operator to join variables"

Python Answers by Framework

Browse Popular Code Answers by Language