Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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))
Source by itsmycode.com #
 
PREVIOUS NEXT
Tagged: #Python #Print #Variable #Using #operator #join #variables
ADD COMMENT
Topic
Name
9+6 =