Python内置函数(48)——ord

本文介绍了Python中ord()函数的基本用法,该函数用于获取单个Unicode字符对应的整数编码值,是chr()函数的逆操作。文章通过示例展示了如何使用ord()函数,并解释了它与chr()函数之间的相互转换。

英文文档:

ord(c)Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ord('a') returns the integer 97 and ord('€') (Euro sign) returns 8364. This is the inverse of chr().

 

说明:  1. 函数功能传入一个Unicode 字符,返回其对应的整数数值。
>>> ord('a')
97
>>> ord('@')
64

  2. 其功能和chr函数刚好相反。

>>> chr(97)
'a'
>>> chr(64)
'@'

 

转载于:https://www.cnblogs.com/sesshoumaru/p/6049575.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值