About Lesson
1.2 String Concatenation – Joining Strings together
Use the ‘+’ sign to join two strings together. The following code snippet will join the strings ‘Welcome’ to ‘ Benjamin’ to ‘ programming is fun’, and print the final message to the screen.
print('Welcome ' + 'Benjamin ' + 'programming is fun')