I want to replace the following string with an empty string.
I cannot type in my inputs here, for some reason, those symbols are ignored here. Kindly look at the image below. My code produces weird results. Kindly help me out here.
#expected output is "A B C D E"
string = "A<font color=#00FF00> B<font color=#00FFFF> C<font color="#00ff00"> D<font color="#ff0000"> E<i>"
lst = ['<i>','<font color=#00FF00>','<font color=#00FFFF>','<font color="#00ff00">','<font color="#ff0000">']
for el in lst:
string.replace(el,"")
print string