xxxxxxxxxx
s = "Fuuad"
res = s.replace('u','',1)
print(res)
xxxxxxxxxx
s = "aabbcadcba"
print(s.replace("a", "", 1) # removes only one "a" from the string.
out -> abbcadcba
print(s.replace("a", "") # removes all the "a"s from the string.
out -> bbcdcb
xxxxxxxxxx
varible.replace(letter, "") # blank quotes.
# e.g.
s = "Hello World"
print(s.replace('e', ""))
# Hllo World
# great for data cleansing
xxxxxxxxxx
# Python program to remove single occurrences of a character from a string
text= 'ItsMyCoode'
print(text.replace('o','',1))
xxxxxxxxxx
Food = ["Apple", "lemon", "Mango"]
Food.append("Cake")
Food.remove("lemon")
for x in Food:
print(x)