I'm making an encoding and decoding program, right now I'm making the decoding program. I have substituted the entire English alphabet for a different letter (e.g. a = e, b = f, c = g) and I've written code that asks for the user to input the encrypted message using:
encrypted_message = input("Insert the encrypted message")
and I want to make it so the user can type "abc"
and python would translate "abc"
into "efg"
and type it back.