Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Cipher
3. Function chr()

Instruction

Good! Let's now focus on a related function of ord(). The function chr() is the inverse of ord(). It takes an integer argument and returns a character. For example:

chr(97)
>> a
chr(34414)
>> 虮

Exercise

We've prepared a list of values for you. Use the chr() function and iterate over every element of this list in order to recreate a word. Save the word in the result variable and print the result.