我刚刚从python 2切换到python 3.我用python 2编写的一个python代码失败了。错误无法理解,我不想将我的python 2代码转换为python 3兼容版本。如果我只重写整个程序会更好。
然而,google中的资源令人困惑,因此我无法找到python 3 telnetlib模块的任何资源。有谁知道任何资源吗?
我在执行中途转换的python代码时附加了错误消息:
File "E:\Python_Program\telnet.py", line 122, in <module>
tn.write(ftpUsername + "\n")
File "C:\Python32\lib\telnetlib.py", line 277, in write
if IAC in buffer:
TypeError: 'in <string>' requires string as left operand, not bytes
答案 0 :(得分:1)
如果您的程序已经在python 2.x中运行,那么我认为您真正需要的是查看文档中的Text Vs. Data Instead Of Unicode Vs. 8-bit部分,因为它解释了为什么您要获取回溯的原因。问题:
与2.x情况的最大区别在于,任何在Python 3.0中混合文本和数据的尝试都会引发TypeError