Concatenation (+) and Repetition (*) in Python

Learn about concatenation and repetition operators supported by Python sequence data types.

Indhumathy Chelliah
codeburst
Published in
5 min readAug 25, 2020

--

Photo by Rishab Lamichhane on Unsplash

Concatenation and Repetition in Python:

In python, concatenations and repetitions are supported by sequence data types both mutable(list) and immutable(tuple, strings). Sequence…

--

--