Answers for "use replace all in python string"

0

python replace all in list

def ReplaceAllInList(list, lookupvalue, replacewith):
    return [(replacewith if v == lookupvalue else v) for v in list]

a = ['aaa', 'bb', 'bb']
a = ReplaceAllInList(list= a, lookupvalue= 'bb', replacewith= 'cc')
print(a)  # output --> ['aaa', 'cc', 'cc']
Posted by: Guest on November-14-2021
0

how to use replace in python

# Syntax - str.replace(old, new [, count]) 

song = 'cold, cold heart'
replaced_song = song.replace('o', 'e')


# The original string is unchanged
print('Original string:', song)

print('Replaced string:', replaced_song)

song = 'let it be, let it be, let it be'

# maximum of 0 substring is replaced
# returns copy of the original string
print(song.replace('let', 'so', 0))
Posted by: Guest on January-03-2022

Code answers related to "use replace all in python string"

Python Answers by Framework

Browse Popular Code Answers by Language