on
Italy
- Get link
- X
- Other Apps
# Program to find the ASCII value of the given character
# Take character from user
c = input("Enter a character: ")
print("The ASCII value of '" + c + "' is",ord(c))
Output 1Enter a character: p The ASCII value of 'p' is 112Here we have used
ord() function to convert a character
to an integer (ASCII value). This function actually returns the Unicode
code point of that character. Unicode is also an encoding technique that
provides a unique number to a character. While ASCII only encodes 128
characters, current Unicode has more than 100,000 characters from
hundreds of scripts.chr() function to inverse this process, meaning, return a character for the input integer.
>>> chr(65)
'A'
>>> chr(120)
'x'
>>> chr(ord('S') + 1)
'T'
Here, ord() and chr() are built-in functions. Visit here to know more about built-in functions in Python.
Comments
Post a Comment