Task 01: Implement Caesar Cipher Create a Python program that can encrypt and decrypt text using the Caesar Cipher algorithm. Allow users to input a message and a shift value to perform encryption and decryption.
In this code I've given user options to select between encrypt, decrypt and exit. Then the user is asked to enter shift and text which is then encoded or decoded using ceaser cypher algorithm.