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.
if __name__ == '__main__':
mssage = str()
ltter = str()
translated = str()
print("Enter a string: ", end="")
mssage = input()
for i in range(len(mssage),0,-1):
ltter = mssage[i-1:i]
translated = translated+ltter
print("The cipher text is: ",translated)
To learn more about encrypt and decrypt a string in Python see: https://brainly.com/question/14298787
#SPJ4