For example, I have the string s1 = "lets go to the mall"
and a second string s2 = "hello"
In Python, how can I manipulate the s2
string to equal the length of s1
.
s2
would then look like:
s2 = "hellohellohellohell"
which would have the same number of characters as s1
.