进制/Unicode 转换函数
bin()
将 int
转换为以 '0b'
为前缀的二进制(基数-2)字符串。
python
>>> bin(9)
'0b1001'
oct()
将 int
转换为以 '0o'
为前缀的八进制(基数-8)字符串。
python
>>> oct(9)
'0o11'
hex()
将 int
转换为以 "0x"
为前缀的小写十六进制(基数-16)字符串。
python
>>> hex(29)
'0x1d'
ord()
返回给定 Unicode 字符 str
的整数 Unicode 码点。
python
>>> ord("a")
97
>>> ord("β")
946
>>> ord("中")
20013
chr()
将整数 Unicode 码点转换为相应的 Unicode 字符串。
python
>>> chr(97)
'a'
>>> chr(946)
'β'
>>> chr(20013)
'中'