What\'s the most pythonic way to mesh two strings together?
For example:
Input:
u = \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\' l = \'abcdefghijklmnopqrst
Just to add another, more basic approach:
st = "" for char in u: st = "{0}{1}{2}".format( st, char, l[ u.index( char ) ] )