Python2到python3列表和字节与字符串

时间:2013-04-17 18:08:03

标签: python arrays string cgi

我有一个我telnet到的IP地址列表并从中收集数据。我将这些数据放入两个变量中。然后,我想将变量中的数据打印到HTML表中。它在Python 2中有效但在Python 3中没有。它给了我以下错误:Can't convert 'bytes' object to str implicitly。我看到其他人对字节码和字符串代码进行解释但是列表怎么样?如果可以的话请帮忙。

#!/usr/bin/python3

import cgi, cgitb
import telnetlib
import re
import socket

user            = 'usr'
password        = 'pwd'

print ("Content-type:text/html\r\n\r\n")
print ("<html>")
print ("<head>")
print ("<title>Locating IP Addresses</title>")
print ("<link href=\"/styles/main.css\" type=\"text/css\" rel=\"stylesheet\" >")
print ("</head>")
print ("<body>")

for count in ["10.1.1.4", "10.1.1.3", "10.1.1.2"]:
    server = (count)
    try:
        tn = telnetlib.Telnet(server)
        tn.read_until(b"ogin")
        tn.write(user.encode('ascii') + b"\r\n")
        tn.read_until(b"assword")
        tn.write(password.encode('ascii') + b"\r\n")
        tn.write(b"environment no more\r\n")
        tn.write(b"configure\r\n")
        tn.write(b"router\r\n")
        tn.write(b"info\r\n")
        tn.write(b"logout\r\n")
        output = (tn.read_all())
        interfaces = (re.findall(b'interface\s\"(.+)\"', output))
        ipaddr = (re.findall(b'address\s(.+)/', output))
        print ("<table>")
        print ("<tr>")
        print ("<th class=\"bld\">%s</th>" % (server))
        print ("</tr>")
        for i,j in zip(interfaces, ipaddr):
            print ("<tr>")
            print (("<td class=\"sn\">"+j+"</td>" "<td class=\"prt\">"+i+"</td>"))

        except socket.error:
            print ("communication error with " + server)

print ("</body>")
print ("</html>")

1 个答案:

答案 0 :(得分:0)

在正则表达式中使用字节时,结果也将是字节,在这种情况下,这意味着interfacesipaddr将是字节列表。

稍后您尝试使用+运算符将这些结果与字符串连接起来,这不允许混合bytesstr

请改为尝试:

print("<td class=\"sn\">"+j.decode()+"</td><td class=\"prt\">"+i.decode()+"</td>")