TypeError:序列项1:期望的字符串,找到元组

时间:2017-10-30 10:42:55

标签: python string python-2.7 tuples

我想写一下html的内容

html = ' '.join(html)
    html_file = open(diff_path, "w")
    html_file.write(html)
    html_file.close()

但是我在共享的第一行收到此错误,尽管html = ' '.join(html)应该已修复该错误。

typeError: sequence item 1: expected string, tuple found

我该如何解决?

1 个答案:

答案 0 :(得分:0)

您必须转换为字符串 尝试以下:

html = " ".join(str(html))