Secret Messages Project
Now that we have learned about encoding, encryption, and secret messages throughout time, let’s make our own secret message project! You have your choice on what you would like your program to do, from the three options below. Be sure to use comments to explain your program, whichever choice you choose.
Choice 1: Conversion with one option
Take a message as input
Convert the input character by character to ordinal numbers then either hexadecimal or binary (your program only needs to do one)
Store the resulting values in a list. The list should have the hex or binary representation of each character as one element of the list.
Print out the converted message.
Ask the user if they want to decode the message.
If they do, convert the code back to characters and output the recreated string.