我使用BeautifulSoup进行网页抓取,我想从输出中删除标题标记。
这是我的代码:
job_location = first_job.find('div', class_ = 'columns end large-2 medium-3 small-12')
job_location
first_job_location = job_location.h4
first_job_location
结果:
Out[102]:
<
h4 class=
"job-text">
Miami, FL
<
/h4>
所需的输出应该只有:迈阿密,佛罗里达
我尝试过使用.text但输出量仍然相同。
请指导。