ASCII Convertor

Using the python built in functions ord() which returns the ASCII value for a character and chr() which returns the character for an ASCII code, can you write a program which converts a character to its code and the other way around.

Scroll to Top