我无法摆脱\ n,我写的语法太多,因为可能有一种简单的方法可以做到,甚至更好,一种不从页面开始提升的方法。这是代码,下面是使用python 2.7 selenium(webdriver)chromedriver的地方
"Mileage" : str(str(mileage).strip("(u'',)")).strip("\n"),
"MPG_Range" : str(mpg).strip("(u'',)"),
输出:7,145英里\ n,24/31 \ n
他们来自页面刮擦:
mileage = car.find_element_by_xpath(".//*[contains(text(),'Mileage:')]/following-sibling::dd").text,
mpg = car.find_element_by_xpath(".//dt[contains(text(),'MPG Range:')]/following-sibling::dd").text,
我想这也是学习如何摆脱里程或者只是\ n的好时机。先感谢您。