Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
unicodedata solution in Clear category for Remove Accents by kdim
import unicodedata
def checkio(string):
n = unicodedata.normalize("NFKD", string)
return "".join([i for i in n if unicodedata.category(i) != 'Mn'])
Jan. 27, 2021
Comments: