Ciphering and Deciphering Unicode in Python using ORD and CHR.
For this challenge I want you to decipher the following number string.
'087104101114101032105115032087097108100111063'
You need to reverse converting the characters using ORD by using CHR. If in doubt review how these work.
Likely you will need the following: 4 or 5 variables, a while loop, and a print statement at the end to display the hidden message.
One thing we did not learn about lists. You can take segments from the list by slicing sections from the string.
Look at the examples found here: https://www.w3schools.com/python/pyth...
GOOD LUCK!