我尝试将文档中的表格保存为目录下的文件,如下所示:
for table in tables:
tableString = html.tostring(table)
fileref=open('c:\\Users\\ahn_133\\Desktop\\appleTables\\Apple-' + str(count) + '.htm', 'w')
fileref.write(tableString)
fileref.close()
count+=1
但是,我不断收到如下错误:
Traceback (most recent call last):
File "<pyshell#27>", line 4, in <module>
fileref.write(tableString)
TypeError: must be str, not bytes
我正在使用 Python 3.3 并安装了 lxml-3.0.1.win32-py3.3.exe
我该如何解决这个错误?