Source Code:
(back to article)
my_string = "banana" my_string = my_string.replace("a", "") print(my_string) # prints "bnn"
Result:
Report an issue