Friday, November 15, 2019

Python program to find ASCII value of character.

# Program to find the ASCII value of the given character
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))


No comments:
Write comments