Example & Tutorial understanding programming in easy ways.

What does the chr() Function do in Python?

It returns the string denoting a character whose Unicode code point is an integer.

For example, the chr(122) returns the string 'z' whereas the chr(1212) returns the string 'Ҽ'.

Read More →