Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Remove Accents by Pouf
from unicodedata import normalize, category
def checkio(in_string):
# normalize splits accented letters in two: letter + accent
# category(c) 'Mn' contains every accent
# http://www.fileformat.info/info/unicode/category/Mn/list.htm
return ''.join(c for c in normalize('NFD', in_string) if category(c) != 'Mn')
Oct. 2, 2015
Comments: