Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Remove Accents by Sarina
from unicodedata import normalize, category
def checkio(in_string):
"remove accents"
base = normalize('NFD', in_string)
return ''.join([c for c in base if category(c) != 'Mn'])
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio(u"完好無缺") == u"完好無缺"
assert checkio(u"préfèrent") == u"preferent"
assert checkio(u"loài trăn lớn") == u"loai tran lon"
print('Done')
Dec. 31, 2019