0 votes
in Python by
Can you please help to clarify what does the chr() function do in Python Language?

1 Answer

0 votes
by

The chr() function got re-added in Python Language 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 Aug 29, 2020 in Python by Robindeniel
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...