Renamed files

This commit is contained in:
Tutur33
2023-11-28 22:28:08 +01:00
parent ab8dff4fa6
commit f39c57c778
25 changed files with 0 additions and 0 deletions
@@ -0,0 +1,16 @@
msg = input("Message à coder ? ")
res = ""
alph = 'abcdefghijklmnopqrstuvwxyz'
for i in msg:
if i == ' ' or i =="'":
res += i
else:
p = alph.find(i)
t = p - 3
if t < 0:
t = 26 + t
res += alph[t]
print(res)