发布网友 发布时间:2022-04-26 14:33
我来回答
共1个回答
热心网友 时间:2022-05-13 10:50
因为你的html不是合法的xml格式,标签没有成对出现,只能用html解析器 from bs4 import BeautifulSoups = """714659079qqcom 2014/09/10 10:14"""soup = BeautifulSoup(s, "html.parser")print soupprint soup.get_text()如果你想用正则的话