可以在html代码中插入已删除项目的结果吗?我该如何实施呢?
这样的事情:
for ntp in response.css('div.content-1col-nobox'):
description = ntp.xpath('normalize-space(//div[6]/div[1]/div[2]/div/blockquote[2]/p/text())').extract_first()
'Description': '<html><body>......'description'..............</body></html>',\
提前谢谢。
答案 0 :(得分:1)
您可以使用简单的字符串操作。
1. '%d' % (description)
'<html>{} some more html </html>'.format(description)
您需要以字符串格式包含您的描述变量。 str(描述)将起作用我想。
description = ntp.xpath('normalize-space(//div[6]/div[1]/div[2]/div/blockquote[2]/p/text())').extract_first()
'Description': '<html><body>...... {} ..............</body></html>'.format(str(descripion))
根据评论中的建议,您可以使用python RE https://docs.python.org/3/library/re.html