我正在尝试在python中使用telnet库来从设备获取信息。但是我有一个上面列出的错误,当我尝试运行我的代码时会抛出该错误。
' STR'对象不支持项目分配
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()