📜  python中的ascii值 - Python代码示例

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

代码示例1
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))