Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: unicodedata normalization solution in Creative category for Remove Accents by Stensen
from unicodedata import normalize, combining
from itertools import filterfalse
checkio = lambda t: u''.join(filterfalse(combining, normalize('NFKD', t)))
Oct. 22, 2020
Comments: