On Sat, 30 Apr 2016 11:31 am, Steven D'Aprano wrote: > In unicode, there are also: > > - titlecase characters, like "DžLjῼ"
To be clear, each of those three characters is considered titlecased individually. The three of them together is not considered a title-cased string. "Is Title" is not just for Unicode. In Python 2, strings (ASCII byte strings) also have an istitle() method: py> "Dz".istitle() True py> "DZ".istitle() False -- Steven -- https://mail.python.org/mailman/listinfo/python-list