Classwork 3
Classwork 3
Caesar Cipher
Caesar cipher is an encryption technique. Like other encryptions, it will transform readable
texts into something unreadable, thereby safeguarding sensitive information. The method is
named after Julius Caesar, who used it in his private correspondence.
Under a Caesar cipher, each letter in the plaintext is replaced by a letter with some fixed
number of positions down the alphabet. For example, with a right shift of 3, A becomes D, B
becomes E, …, X becomes A, Y becomes B, and Z becomes C (Figure 1).
Follow the same submission requirement (.py file and screenshot) as before.
Hint: Use the reference string in the slides examples. Some care needs to be taken when
starting over from the alphabet (e.g., X ↦ A ).