209k views
3 votes
How to get ascii value of char in python?

User Hpityu
by
7.4k points

1 Answer

2 votes

In Python, one can use the built-in ord() function to get the ASCII value of a character.

How to get ascii value of char in python?

Python is known to be a term that is used for high-level, general-kind of programming language. It is one that has the design philosophy that tells more on the code readability with the aid of vital indentation. Python is one that is uniquely typed so it makes it supports a lot of programming tools, such as structured, object-oriented as well as functional programming

So, an example of way a person can use the built-in ord() function to get the ASCII value of a character:

python

# Get ASCII value of a character

char = 'A'

ascii_value = ord(char)

print(f'The ASCII value of {char} is {ascii_value}')

Therefore, Its will output:

csharp

The ASCII value of A is 65

User Michael Xu
by
7.9k points