Simple Encryption Tool: This Python project implements a basic Caesar Cipher that shifts character values by 5 to encrypt and decrypt text.
Core Logic: It uses the ord() function to convert characters into their ASCII numerical values and chr() to convert those numbers back into characters.
Symmetric Process: The encryption script adds 5 to the character code, while the decryption script reverses the process by subtracting 5.
User Interaction: The program allows users to input any text through the console and see the transformed result instantly.
Educational Value: It serves as a great introductory exercise for understanding loops, string manipulation, and the fundamentals of data security.