'str' 对象不支持项目分配 telnetlib
'str' object does not support item assignment telnetlib
我正在尝试使用 python 中的 telnet 库从设备获取信息。但是,我遇到了上面列出的错误,当我尝试 运行 我的代码时会抛出该错误。
'str' object does not support item assignment
tn = telnetlib.Telnet(host)
tn.expect([r".*ogin:.*", r".*sername:.*"])
tn.write(username+"\n")
tn.expect(r".*assword:.*")
tn.write(password+"\n")
tn.write("terminal length 0"+"\n")
tn.write("show " + configType + "-config"+"\n")
tn.write("exit"+"\n")
output = tn.read_all()
你正在做的第4行
tn.expect(r".*assword:.*")
但是telnet.expect
只接受list
。
我正在尝试使用 python 中的 telnet 库从设备获取信息。但是,我遇到了上面列出的错误,当我尝试 运行 我的代码时会抛出该错误。
'str' object does not support item assignment
tn = telnetlib.Telnet(host)
tn.expect([r".*ogin:.*", r".*sername:.*"])
tn.write(username+"\n")
tn.expect(r".*assword:.*")
tn.write(password+"\n")
tn.write("terminal length 0"+"\n")
tn.write("show " + configType + "-config"+"\n")
tn.write("exit"+"\n")
output = tn.read_all()
你正在做的第4行
tn.expect(r".*assword:.*")
但是telnet.expect
只接受list
。