From a1203ccb343703ba5ae522254f75b6384a1831a7 Mon Sep 17 00:00:00 2001 From: jerome Date: Mon, 18 Dec 2023 00:02:09 +0100 Subject: =?UTF-8?q?dep=C3=B4t=20initial?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rot13.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 rot13.py (limited to 'rot13.py') 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')) -- cgit v1.2.3