✨ Finishing 7 new elements
This commit is contained in:
12
OReilly/remove-accents.py
Normal file
12
OReilly/remove-accents.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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')
|
Reference in New Issue
Block a user