programming-examples/python/Basics/Python Program to Find ASCII Value of Character.py
2019-11-18 14:44:36 +01:00

9 lines
242 B
Python

# Program to find the ASCII value of the given character
# Change this value for a different result
c = 'p'
# Uncomment to take character from user
#c = input("Enter a character: ")
print("The ASCII value of '" + c + "' is",ord(c))