Answers for "replace all char after text python"

13

python replace letters in string

my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)
Posted by: Guest on February-01-2021
0

python replace accented characters code

import unicodedata

def strip_accents(text):

    try:
        text = unicode(text, 'utf-8')
    except NameError: # unicode is a default on python 3 
        pass

    text = unicodedata.normalize('NFD', text)
           .encode('ascii', 'ignore')
           .decode("utf-8")

    return str(text)

s = strip_accents('àéêöhello')

print s
Posted by: Guest on February-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language