Write a program to Find ASCII Value of Character in Python
Code:
1 2 3 4 5 6 7 8 |
# Program to find the ASCII value of the given character #to take character from user c = input("Enter a character: ") print("The ASCII value of '" + c + "' is",ord(c)) |