I have the string:
a = "ÀÁÂÃÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜ" b = "àáâãäèéçêëìíîïòóôõöùúûüÿ"
and I want to create the string
"ÀàÁáÂâ..."
I.e split the string in two and then zip the halves together.
I tried the naive zip(a, b)
but this didn't work. I think this is due to a problem with unicode.
Does anyone know how I can get the result I want?