Answers for "how to replace a character from a string in 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
7

replace character in string python

>>> x = 'xpple bxnxnx cherry'
>>> a = x.replace(x,a)  # replaces x with a
'apple banana cherry'

>>> first_a = x.replace(x,a,1)  # only replaces first a
'apple bxnxnx cherry'
Posted by: Guest on December-28-2020

Code answers related to "how to replace a character from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language