Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Remove Accents by rodka81
import unicodedata
def checkio(in_string):
return ''.join(c for c in unicodedata.normalize('NFKD', in_string)
if not unicodedata.combining(c))
May 20, 2019