summaryrefslogtreecommitdiff
path: root/rot13.py
diff options
context:
space:
mode:
Diffstat (limited to 'rot13.py')
-rw-r--r--rot13.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/rot13.py b/rot13.py
new file mode 100644
index 0000000..f2d97b5
--- /dev/null
+++ b/rot13.py
@@ -0,0 +1,4 @@
+#!/usr/bin/env python3
+import codecs
+message = input()
+print(codecs.encode(message,'rot_13'))