import requestsfrom bs4 import BeautifulSoup# Make a request on to your websitepage = requests.get("Paste your Website Domain here")soup = BeautifulSoup(page.content, 'html.parser')# Create all_h1_tags as empty listall_h1_tags = []# Set all_h1_tags to all h1 tags of the soupfor element in soup.select('h1'):all_h1_tags.append(element.text)# Create seventh_p_text and set it to 7th p element text of the pageseventh_p_text = soup.select('p')[6].textprint(all_h1_tags, seventh_p_text)# print all h1 elements and the text of the website on your console
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。