Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Remove Accents by gyahun_dash
from unicodedata import category, normalize
def checkio(string):
return ''.join(c for c in normalize('NFKD', string) if category(c) != 'Mn')
May 16, 2014