gpt4 book ai didi

python - UnicodeEncodeError : 'charmap' codec can't encode character (in Python 3. 3)

转载 作者:行者123 更新时间:2023-12-01 05:27:03 25 4
gpt4 key购买 nike

当我尝试在 Python 中打印所有 ASCII 字符时仅打印 127,并且在 127 之后输出出现错误。我无法理解该错误的含义.

示例:

t = list(range(0, 256))
for x in t:
print(str(x) + ". " + chr(x))

错误:

Traceback (most recent call last):
File "D:\Study\Pedia\Python Book\6. Functions\2. Built-in functions\ord_chr.py", line 6, in <module>
print(str(x) + ". " + str(chr(x)))
File "C:\Python33\lib\encodings\cp1252.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\x80' in position 5: character maps to <undefined>

注意:我无法向您显示完整的输出,因为我无法从 sublime 输出控制台复制完整的原始输出。不知道无法复制的真正原因。

<小时/> enter image description here

最佳答案

ASCII 包括 128 个字符的定义(0127)。

\x80 (128) 不包含在那里。

关于python - UnicodeEncodeError : 'charmap' codec can't encode character (in Python 3. 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21116412/

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