13 lines
337 B
Python
13 lines
337 B
Python
import unicodedata
|
|
|
|
|
|
def checkio(in_string):
|
|
"""remove accents"""
|
|
return ''.join(c for c in unicodedata.normalize('NFD', in_string) if unicodedata.category(c) != 'Mn')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
assert checkio(u"préfèrent") == u"preferent"
|
|
assert checkio(u"loài trăn lớn") == u"loai tran lon"
|
|
print('Done')
|