Answers for "python replace section of string"

18

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
1

replace substrings in python

s = 'one two one two one'
print(s.replace(' ', '-'))
# Output -
# one-two-one-two-one

s = 'one two one two one'
print(s.replace(' ', ''))
# Output -
# onetwoonetwoone
Posted by: Guest on January-03-2022

Code answers related to "python replace section of string"

Python Answers by Framework

Browse Popular Code Answers by Language