
String concatenation
Perhaps the most used operation on strings is the concatenation of two or more strings. In other words, it is often necessary to combine several strings to form longer sentences.
>>> "Salt" + " & " + "Pepper"
'Salt & Pepper'
Repetition of strings
Strange, but strings can also be played repeatedly repeatedly, using the multiplication operator *.
>>> "10" * 4
'10101010'
>>> "Doo" * 2
'DooDoo'