我的代码
html = "<td>1.08 8.00 151.00</td>"
from bs4 import BeautifulSoup
print BeautifulSoup(html,"lxml").renderContents()
输出:
<html><body><td>1.08 8.00 151.00</td></body></html>
所需的输出:
1.08 ; 8.00 ; 151.00 ;
答案 0 :(得分:4)
>>> from bs4 import BeautifulSoup
... html = "<td>1.08 8.00 151.00</td>"
... soup = BeautifulSoup(html, "lxml")
>>> print(soup.find('td').text)
1.08 8.00 151.00
>>> nums = soup.find('td').text.split()
>>> nums
['1.08', '8.00', '151.00']
>>> ' ; '.join(nums)
'1.08 ; 8.00 ; 151.00'