python replace one character in string with another code example
Example: python replace letters in string
my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)
my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)