diff options
| author | jerome <jerome@xlinfo.fr> | 2025-10-12 16:41:39 +0200 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2025-10-12 16:41:39 +0200 |
| commit | ec7b5913698416b775665a871a0d4102b47c680c (patch) | |
| tree | b3e3053ce58913f6c374d07cccf7c9d5c2a9e804 | |
| parent | c6aa59690c57d6d053aac0136b3343237550f468 (diff) | |
| download | python-ec7b5913698416b775665a871a0d4102b47c680c.tar.gz python-ec7b5913698416b775665a871a0d4102b47c680c.zip | |
testcesar.py
| -rw-r--r-- | testcesar.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testcesar.py b/testcesar.py new file mode 100644 index 0000000..292279b --- /dev/null +++ b/testcesar.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +print("""Cesar a perdu sa clef pour déchiffrer son mot de passe "Whkhdhu" ! +Aide-le à le retrouver pour avoir ton Flag !""") +pwd = input("Le mot de passe (q pour quitter) : ") +if pwd == "Padawan": + print("Bien joué, ton flag est AAAAAA ! ") +else: + print("Désolé ! Essaie-encore...") |
