Python 漂亮的 Soup 代码不起作用
我正在 Linux 中尝试这段代码,它给出了空输出。 我刚刚复制并粘贴了 BS 文档
import urllib2
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup("""Bob's <b>Bold</b> Barbeque Sauce now available in
<b class="hickory">Hickory</b> and <b class="lime">Lime</a>""")
soup.find("b", { "class" : "lime" })
输出为空
I am trying this code in linux and its giving empty output.
I have just coped and paste for BS docs
import urllib2
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup("""Bob's <b>Bold</b> Barbeque Sauce now available in
<b class="hickory">Hickory</b> and <b class="lime">Lime</a>""")
soup.find("b", { "class" : "lime" })
The output is empty
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非您
打印
,否则您的脚本不会输出任何内容。你需要...(这在这里工作。)
Your script won't output anything unless you
print
it. You need...(This is working here.)
它适用于 Python 2.6 或 2.7 和 BeautifulSoup 3.2.0。
It works for me on Python 2.6 or 2.7 and BeautifulSoup 3.2.0.