Your mission is to implement a function that converts the following potentially harmful characters: < --> < > --> > " --> " & --> & Good luck :D
def html_escape(text): text = text.replace('<', '<') text = text.replace('>', '>') text = text.replace('"', '"') text = text.replace('&', '&') return text