0 votes
in Python by
What Does The Chr() Function Do In Python?

1 Answer

0 votes
by

The chr() function got re-added in Python 3.2. In version 3.0, it got removed.

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 ‘?’.

Related questions

0 votes
asked Dec 14, 2019 in Python by sharadyadav1986
0 votes
asked Dec 14, 2019 in Python by sharadyadav1986
...