Answers for "unicodedata no accent"

0

unicodedata no accent

import unicodedata
def strip_accents(s):
   return ''.join(c for c in unicodedata.normalize('NFD', s)
                  if unicodedata.category(c) != 'Mn')
Posted by: Guest on October-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language