Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simple_remove_accents solution in Clear category for Remove Accents by Jon_Red
from unicodedata import category,normalize
def checkio(in_string):
return ''.join(x for x in normalize('NFD',in_string)if category(x)!='Mn')
June 10, 2020