Answers for "chiffre cesar python"

1

chiffre cesar python

def chiffre_cesar(str):
    return ''.join([chr(ord('A')+3+(ord(i.upper())-ord('A')) % 26 - 26 ) for i in str ])
Posted by: Guest on May-04-2022

Python Answers by Framework

Browse Popular Code Answers by Language