python replace strings in string code example
Example 1: python replace letters in string
my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)
Example 2: python replace string
string.replace(old, new, count)
my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)
string.replace(old, new, count)