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 > 25:
t = t - 26
res += alph[t]
print(res)