Message Encode-Decode using python tKinter GUI and Caesar cipher
- Input: User enters a message in the entry field.
- Selection: User chooses between encoding or decoding from a dropdown menu.
- Processing: When the "Process" button is clicked:
- If encoding is selected, the program applies a Caesar cipher (shift of 3) to the input message.
- If decoding is selected, the program reverses the Caesar cipher.
- Output: The result label displays the encoded or decoded message.
- Validation: If no message is entered, a message prompts the user to enter one.