如何在 Python 中将字符转换为整数,反之亦然?
我想获取给定一个字符,其 ASCII
值。
例如,对于字符a
,我想得到97
,反之亦然。
I want to get, given a character, its ASCII
value.
For example, for the character a
, I want to get 97
, and vice versa.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用
chr()
和ord()
:Use
chr()
andord()
:顺序和chr
ord and chr
不是OP的问题,但给定标题
如何将Python中的字符转换为整数
,Not OP's question, but given the title
How can I convert a character to a integer in Python
,对于长字符串,您可以使用它。
For long string you could use this.