1

I am new to python, I wanted to ask that is there any way to convert an Integer value to it's equivalent character, basically I need reverse of what ord() function does

Hayley Guillou
  • 3,953
  • 4
  • 24
  • 34
  • Possible duplicate of [How to get the ASCII value of a character?](https://stackoverflow.com/questions/227459/how-to-get-the-ascii-value-of-a-character) – snakecharmerb Sep 21 '19 at 13:00

1 Answers1

0

You're looking for the chr function

chr(i)
Hayley Guillou
  • 3,953
  • 4
  • 24
  • 34