用 Python 程序查找字符的 ASCII 值

2022-05-03 00:00:00 程序 查找 字符

在这个程序中,您将学习如何查找字符的 ASCII 值并显示它。
美国信息交换标准代码 ASCII。
它是给不同字符和符号的数值,供计算机存储和操作。例如,字母‘ a’的 ASCII 值是65。

# 查找给定字符的ASCII码

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))

输出结果:

The ASCII value of 'p' is 112

Python Program to Find ASCII Value of Character
用 Python 程序查找字符的 ASCII 值
In this program, you'll learn to find the ASCII value of a character and display it.

在这个程序中,您将学习如何查找字符的 ASCII 值并显示它。

To understand this example, you should have the knowledge of the following Python programming topics:

为了理解这个例子,你应该了解下面的 Python 编程主题:

Python Input, Output and Import Python 输入、输出和导入
Python Programming Built-in Functions Python 编程内置函数
ASCII stands for American Standard Code for Information Interchange.

美国信息交换标准代表 ASCII。

It is a numeric value given to different characters and symbols, for computers to store and manipulate. For example, the ASCII value of the letter 'A' is 65.

它是给不同字符和符号的数值,供计算机存储和操作。例如,字母‘ a’的 ASCII 值是65。

Source Code
源代码

Program to find the ASCII value of the given character

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
Output

输出
注意: 要测试这个程序的其他字符,请更改分配给 c 变量的字符即可。
在这里,我们使用 ord ()函数将字符转换为整数(ASCII 值)。这个函数返回这个字符的 Unicode字符。
Unicode 还是一种为字符提供唯一数字的编码技术。虽然 ASCII 码只能编码128个字符,但目前的 Unicode 有来自数百个脚本的超过100,000个字符。
该你了: 修改上面的代码,使用 chr ()函数从相应的 ASCII 值中获取字符,如下所示。

>>> chr(65)
'A'
>>> chr(120)
'x'
>>> chr(ord('S') + 1)
'T'

相关文章