Python implementation of the caesar cipher
A Caesar cipher is a type of substitution cipher in which all letter in the plain text are replaced by a letter at a predetermined shift further along the alphabet.
For e.g. In the Image below we can observe a caesar cipher with a right shift of 3 i.e. a, the letter at postion 0, gets shifted to d, the letter at the 3rd position, b->e, c->f
and so on.
Python 3
Download the source code from here
Move to the folder containing the file and open command prompt/ terminal in that folder and run the command python main.py
OR
Run the code using the online repl.it IDE here