Answers for "string replace character python"

9

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

Code answers related to "string replace character python"

Python Answers by Framework

Browse Popular Code Answers by Language