From ec8893a097a6c0fffebd7db9e4a5568a3bf4df47 Mon Sep 17 00:00:00 2001 From: jerome Date: Sun, 12 Oct 2025 17:41:43 +0200 Subject: organisation --- crypto/rot13.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 crypto/rot13.py (limited to 'crypto/rot13.py') diff --git a/crypto/rot13.py b/crypto/rot13.py new file mode 100644 index 0000000..b2730f1 --- /dev/null +++ b/crypto/rot13.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +import string + +def rot13(char): + liste = list(string.ascii_lowercase)*2 + list(string.ascii_uppercase)*2 + if char not in liste: + return char + else: + return liste[liste.index(char)+13] + +msg = input("Votre message : ") +msgChiffre = str() +for lettre in msg: + msgChiffre = msgChiffre + rot13(lettre) +print(msgChiffre) -- cgit v1.2.3