📜  搜索代码 ascii python 代码示例

📅  最后修改于: 2022-03-11 14:46:12.586000             🧑  作者: Mango

代码示例1
# Program to find the ASCII value of a character

ch = input("Enter any character: ")

print("The ASCII value of char " + ch + " is: ",ord(ch))