Concatenate
All it really means is combine text (remember, text is called a string) and variables together into single sentences
EXAMPLE:
myName = input("What's your name? ")
myLunch = input("What are you having for lunch? ")
print(myName, "is going to be chowing down on", myLunch, "very soon!")
Comments
Post a Comment