' STR'对象不支持项目分配telnetlib

时间:2016-04-04 14:46:55

标签: python python-2.7 string-formatting telnetlib

我正在尝试在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()

1 个答案:

答案 0 :(得分:1)

在第4行你正在做

tn.expect(r".*assword:.*")

telnet.expect只接受list