What\'s the most pythonic way to mesh two strings together?
For example:
Input:
u = \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\' l = \'abcdefghijklmnopqrst
I like using two fors, the variable names can give a hint/reminder to what is going on:
for
"".join(char for pair in zip(u,l) for char in pair)