Python Program to find ascii value of a character
Ascii is american standard code for information interchange. It is a character encoding standard. This ascii code is used to represent text in computer. In this post we are going to learn how to find ascii value of a character.
Input:
a
Output:
ascii value of a is 97
Code:
r=input()
print("ascii value of "+r+" is ",ord(r) )
Note:
Hello Guys, Don't Stop Learning keep Going..............