Published
- 1 min read
chiffre cesar python
The solution for this is noted below
chiffre cesar python
Solution
def chiffre_cesar(str):
return ''.join([chr(ord('A')+3+(ord(i.upper())-ord('A')) % 26 - 26 ) for i in str ])
Try other methods by searching on the site. That is if this doesn’t work