gpt4 book ai didi

python - 相当于 python3 中的 python2 chr(int)

转载 作者:行者123 更新时间:2023-11-28 18:14:54 25 4
gpt4 key购买 nike

# python2
print(chr(174))
?

# python3
print(chr(174))
®

我正在寻找 python2 中的 chr() 等价物。我相信这是由于 python 3 返回的是 unicode 字符而不是 ASCII。

最佳答案

实际上,在 Py3 中 chr 等同于 Py2 中的 unichr。您可以使用 bytesbytearray

例如:

>>> print(bytes([174]))
b'\xae'

>>> print(bytearray([174]))
bytearray(b'\xae')

b'\xae' 等于 ?

关于python - 相当于 python3 中的 python2 chr(int),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48958212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com