我正在从
中抓取客房信息使用BeautifulSoap
库并使用xlwt-future-0.8.0
将结果保存到Excel中。
除了当我的代码到达" Premier Full Harbor B& B" 酒店的描述并写入Excel,该单元格为空时,所有内容都被成功删除。这是描述描述的片段
if rooms.select("p.deal-description"):
#room description
print("Deal Desc " + rooms.select("p.deal-description")[0].text.strip())
worksheet.write(file_row_number, 4,rooms.select("p.deal-description")[0].text.strip())
" Premier Full Harbor B& B" 之前的所有会议室描述都已被删除并成功输入Excel。
有什么问题?这个描述中有些难以理解的字符?