Question: Python Programming Please type the code in .py file and submit the screenshot of the code and screenshot of the code running. Write a program
Write a program that encrypts and decrypts the user input. Note - Your input should be only lowercase characters with no spaces. Your program should have a secret distance given by the user that will be used for encryption/decryption. Each character of the user's input should be offset by the distance value given by the user For Encryption Proccess: Take the string and reverse the string. Encrypt the reverse string with each character replaced with distance value (x) given by the user. For Decryption: Take the string and reverse the string. Decrypt the reverse string with each character replaced with distance value (x) given by the user. Sample: String input-cdu Encryption process- udc -> xgf (encrypted) The program should ask the user for input to encrypt, and then display the resulting encrypted output. Next your program should ask the user for input to decrypt, and then display the resulting decrypted output Enter phrase to Encrypt (lowercase, no spaces): apples Enter distance value: 3 Result: xgf xgf Enter phrase to Decrypt (lowercase, no spaces): Enter distance value: 3 Result: cdu
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
