用xpath爬取文本时如何去掉非文本内容

问题相关代码
discribe =html.xpath('//div[@class="container-fluid"]//div[@class="work_b"]//text()')

img

在我爬取此段文本时,输出的数据是带有/r的

img

我要怎么做才能爬出纯文本内容?


discribe =html.xpath('normalize-space(//div[@class="container-fluid"]//div[@class="work_b"]//text())')