String Escape for Html Python
import html
s = '<p>&<\p>'
e = html.escape(s) # = '<p>&<\p>'
Worried Wolf
import html
s = '<p>&<\p>'
e = html.escape(s) # = '<p>&<\p>'