There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
#A Reverse Cipher program message = ‘Hello, do you know my other computer is your computer?’ translated = ‘ ‘ i = len(message) - 1 while i >= 0 : translated = translated + message[i] i = i = 1 print(translated)