String Concatenation And Replication

Concatenation

>>> 'Alice' + 'Bob'
'AliceBob'

String replication

>>> 'Alice' * 5
'AliceAliceAliceAliceAlice'