Code de recherche ASCII Python
# Program to find the ASCII value of a character
ch = input("Enter any character: ")
print("The ASCII value of char " + ch + " is: ",ord(ch))
Blue Batfish