Florent Madelaine
0214c87c6c
nouveau fichier : 2/1LoopOnWord.py nouveau fichier : 2/2Rot13.py nouveau fichier : 2/3Rot13.py nouveau fichier : 2/4Rot13.py modifié : 2Prog.md
12 lines
183 B
Python
12 lines
183 B
Python
#! /usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
message="secretfrperg"
|
|
|
|
for element in message:
|
|
n=ord(element)-97
|
|
m=(n+13)%26
|
|
rot=chr(m+97)
|
|
print(rot,end='')
|
|
print("\n")
|