Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ascii or alfha with normalize solution in Clear category for Remove Accents by Oleg_Domokeev
from unicodedata import normalize
def checkio(in_string):
return ''.join([letter for letter in normalize('NFD', in_string) if letter.isascii() or letter.isalpha()])
March 7, 2019
Comments: