Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

How do I get the ASCII value of a character as an int in Python?

1 Answer

0 votes
by (106k points)

To get the ASCII value of a character in Python we have a function called as ord(), it would get the int value of the char. And in case if you want to convert back char into int then you can use the function chr() which does the trick.

Below is an example that illustrates the use of ord() and char() function respectively:-

print(ord('a')) 

print(chr(97))

print(chr(ord('a') + 3))

image

If you are using Python 2, then there is also a function which Tells the ASCII value which is unichr():-

print unichr(97)

print unichr(1234)

image

Related questions

0 votes
1 answer
asked Feb 12, 2021 in Python by adhiraj (4k points)
0 votes
0 answers
0 votes
1 answer

Browse Categories

...