chr() function returns the string denoting a character whose Unicode code point is an integer.
The chr() function,in Python version 3.0, it got removed and got re-added in Python 3.2.
For example, the chr(122) returns the string ‘z’ whereas the chr(1212) returns the string ‘Ҽ
>>> chr(122) 'z' >>> chr(1212) 'Ҽ' >>>
This article is contributed by Sneha. If you like dEexams.com and would like to contribute, you can write your article here or mail your article to admin@deexams.com . See your article appearing on the dEexams.com main page and help others to learn.