0

我有一个 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>")
4

1 回答 1

0

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

稍后您尝试使用运算符将​​这些结果与字符串连接,该+运算符不允许混合bytesand str

试试这个:

print("<td class=\"sn\">"+j.decode()+"</td><td class=\"prt\">"+i.decode()+"</td>")
于 2013-04-17T19:45:29.530 回答