diff --git a/Python/escape_html.py b/Python/escape_html.py
new file mode 100644
index 0000000..373e376
--- /dev/null
+++ b/Python/escape_html.py
@@ -0,0 +1,2 @@
+def escape_html(text):
+ return text.replace("&", "&").replace("<", "<").replace(">", ">")