📅  最后修改于: 2022-03-11 14:46:12.586000             🧑  作者: Mango
# Program to find the ASCII value of a character
ch = input("Enter any character: ")
print("The ASCII value of char " + ch + " is: ",ord(ch))