Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Use unicodedata, Luke! solution in Clear category for Remove Accents by obone
from unicodedata import normalize, category
checkio = lambda in_string: \
''.join(c for c in normalize('NFD', in_string) if category(c) != 'Mn')
Sept. 13, 2019
Comments: