Printable

Report a typo

Write a code that for the given integer code point checks whether this code point corresponds to a printable character (as opposed to a hexadecimal escape sequence), and if yes, outputs this character, otherwise outputs False.

Tip: Printable range is from 32 to 126, including these numbers.

Sample Input 1:

126

Sample Output 1:

~
Write a program in Python 3





___

Create a free account to access the full topic