Write a python Program to Find ASCII Value of Character
Topic: Write a python Program to Find ASCII Value of Character
Solution
c = 'p' print("The ASCII value of '" + c + "' is", ord(c))
List all Python Programs
Solution
c = 'p' print("The ASCII value of '" + c + "' is", ord(c))