Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮忙。Python:
chr(-155) Traceback(最近一次调用最后一次):文件“”,第 1 行,在 ValueError 中:chr() arg 不在范围内 (256)
负值是返回特定字符的错误 ASCII 如何解决该问题?谢谢(抱歉英语不好)
代表 ASCII 字符的整数都是正数。负整数没有等效的 ASCII 字符。有关有效 ASCII 字符的表,请参见此处。
所以真正的问题是你的程序接受了不正确的输入。在尝试处理输入之前,您需要检查输入的完整性。