In my program the user enters some encrypted text, for my example the encrypted text is: ,@AK ,=PL /ADD x= {F;JQHL=< ghi p_
This is a very basic program before any one says its low level encryption .. i know!
Anyway it converts the encrypted text to ascii code so it looks like this:
print(convert)
[111, 37, 38, 48, 32, 111, 34, 53, 49, 32, 114, 38, 41, 41, 32, 93, 34, 32, 96, 43, 126, 47, 54, 45, 49, 34, 33, 32, 76, 77, 78, 32, 85, 68]
I need some help though, i need each number in that list to be subtracted from 27 then if the result is less than 33 add 94 then print the numbers as they were just with that sum completed how do i do this?