鱼C论坛

 找回密码
 立即注册
查看: 891|回复: 3

[已解决]标签问题

[复制链接]
发表于 2020-8-10 23:23:13 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>

<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>

<p class="story">...</p>
"""

from bs4 import BeautifulSoup
soup = BeautifulSoup(html_doc, 'html.parser')
import re
def has_class_but_no_id(tag):
    return tag.has_attr('class') and not tag.has_attr('id')
soup.find_all(has_class_but_no_id)

为什么我这里还是返回了<a>标签?还有调用has_class_but_no_id不需要传参数的吗?
最佳答案
2020-8-11 09:16:20
1. 因为这里 Beautiful Soup 把
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
这个 p 标签看成是一个整体了

2. 这里的意思是函数本身作为参数传入,不需要加上表示调用的括号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-11 09:16:20 | 显示全部楼层    本楼为最佳答案   
1. 因为这里 Beautiful Soup 把
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
这个 p 标签看成是一个整体了

2. 这里的意思是函数本身作为参数传入,不需要加上表示调用的括号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-11 09:33:39 | 显示全部楼层
那是因为你这一行已经错了不是这个
<a href="http://example.com/elsie" class="sister" id="link1"> Elsie < / a>,
而是这个
<a href="http://example.com/elsie" class="sister" id="link1"> Elsie </a>,
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-11 09:34:31 | 显示全部楼层
你的代码打错了不是这个
<a href="http://example.com/elsie" class="sister" id="link1"> Elsie < / a>,
而是这个
<a href="http://example.com/elsie" class="sister" id="link1"> Elsie </a>,
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-19 11:12

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表