0
MMahendra Kumar
To calculate the ASCII value of a given character
0 Comments
# take input ch = input("Enter any character: ") # printing ascii value of character print("The ASCII value of " + ch + " is:", ord(ch))