The code template of Assignment2 is provided above. Few statements are missing.
Fill in the statements and code for encryption and decryption:
a) Encrypt few strings of your choice
b) Decrypt the same strings
Your program should be annotated.
Take screen shots of your codes and outputs, convert into pdfs up load here.
In Python, Please answer with screenshots of code and outcome!

Respuesta :

Program in python to reverse encrypt a message entered by the user and display it on the screen. Output image of the algorithm is attached.

Python code

if __name__ == '__main__':

  • # Definir variables

mssage = str()

ltter = str()

translated = str()

  • # Enter a string

print("Enter a string: ", end="")

mssage = input()

  • # Encryption with reverse cipher

for i in range(len(mssage),0,-1):

 ltter = mssage[i-1:i]

 translated = translated+ltter

  • # Output

print("The cipher text is: ",translated)

To learn more about encrypt and decrypt a string in Python see: https://brainly.com/question/14298787

#SPJ4

Ver imagen megatokay