I got the task to alternately combine the letters of two strings with the same length.
For example:
Inputstring 1: \"acegi\" Inputstring 2: \"bdfhj\
Get a and b with input or however you want. No need to copy that. The point is the code.
a = 'acegi' b = 'bdfhj' c = '' for i in range(len(a)): c += a[i] + b[i] print(c)
Result is:
abcdefghij