Concatenating refers to โgluing things togetherโ. String concatenation is the opposite of splitting. In this lesson, youโll see some of the ways to concatenate or join strings together. The simplest and most common way is to use the plus symbol to add multiple strings together:
>>> 'a' + 'b' + 'c'
'abc'
.join() method:
>>> city = ['BOISE', 'IDAHO', 'US']
>>> ' '.join(city)
'BOISE IDAHO US'
