首页 > 后端开发 > Python教程 > 如何在Python中获取字符的ASCII值?

如何在Python中获取字符的ASCII值?

Susan Sarandon
发布: 2024-11-25 10:32:10
原创
449 人浏览过

How to Get the ASCII Value of a Character in Python?

在Python中获取ASCII值

问题:如何检索字符的ASCII值并将其作为整数存储在Python?

答案:

ord() 函数以整数形式提供字符的 ASCII 值。如果您希望恢复转换,可以使用 chr() 函数。

例如:

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
登录后复制

在 Python 2 中,unichr () 函数也可用于根据序数检索 Unicode 字符value:

>>> unichr(97)
u'a'
>>> unichr(1234)
u'\u04d2'
登录后复制

在 Python 3 中,可以使用 chr() 代替 unichr()

为了进一步参考,您可以参考以下文档:

  • [ord() - Python 3.6.5rc1 文档](https://docs.python.org/3/library/functions.html#ord)
  • [ord() - Python 2.7.14 文档](https://docs. python.org/2/library/functions.html#ord)

以上是如何在Python中获取字符的ASCII值?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板