A little googling turned this up. https://mail.python.org/pipermail/python-ideas/2013-July/021...
x = 'o\u0308o\u0327' len(x) == 4 x == "öo̧" x[:2] == "ö" x[2:] == "o̧" x[0] == x[2] == "o"
A little googling turned this up. https://mail.python.org/pipermail/python-ideas/2013-July/021...