91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • python3 BeautifulSoup模塊使用字典的方法抓取a標簽內的數據示例

python3 BeautifulSoup模塊使用字典的方法抓取a標簽內的數據示例

發布時間:2020-09-08 19:04:36 來源:腳本之家 閱讀:330 作者:weixin_34351321 欄目:開發技術

本文實例講述了python3 BeautifulSoup模塊使用字典的方法抓取a標簽內的數據。分享給大家供大家參考,具體如下:

# -*- coding:utf-8 -*-
#python 2.7
#XiaoDeng
#http://tieba.baidu.com/p/2460150866
#標簽操作
from bs4 import BeautifulSoup
import urllib.request
import re
#如果是網址,可以用這個辦法來讀取網頁
#html_doc = "http://tieba.baidu.com/p/2460150866"
#req = urllib.request.Request(html_doc) 
#webpage = urllib.request.urlopen(req) 
#html = webpage.read()
html="""
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title" name="dromouse"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a  rel="external nofollow" rel="external nofollow" class="sister" id="xiaodeng"><!-- Elsie --></a>,
<a  rel="external nofollow" rel="external nofollow" class="sister" id="link2">Lacie</a> and
<a  rel="external nofollow" class="sister" id="link3">Tillie</a>;
<a  rel="external nofollow" rel="external nofollow" class="sister" id="xiaodeng">Lacie</a>
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
soup = BeautifulSoup(html, 'html.parser') #文檔對象
#查找a標簽,只會查找出一個a標簽
#print(soup.a)#<a class="sister"  rel="external nofollow" rel="external nofollow" id="xiaodeng"><!-- Elsie --></a>
for k in soup.find_all('a'):
 print(k)
 print(k['class'])#查a標簽的class屬性
 print(k['id'])#查a標簽的id值
 print(k['href'])#查a標簽的href值
 print(k.string)#查a標簽的string
#如果,標簽中含有其他標簽,比如..,此時要提取中的數據,需要用k.get_text()
#tag.get('calss'),也可以達到這個效果

Python Socket編程技巧總結》、《Python正則表達式用法總結》、《Python數據結構與算法教程》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》

更多關于Python相關內容可查看本站專題:《

希望本文所述對大家Python程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌兰浩特市| 交城县| 聂荣县| 南靖县| 通城县| 武隆县| 明光市| 新宾| 富民县| 龙口市| 洪洞县| 都兰县| 瓮安县| 北安市| 宾阳县| 和平区| 龙海市| 新田县| 武强县| 贵港市| 仪陇县| 岫岩| 吉木萨尔县| 惠州市| 开远市| 同仁县| 航空| 湟源县| 互助| 静乐县| 格尔木市| 长治市| 宁强县| 汕尾市| 湘乡市| 沾化县| 麦盖提县| 陈巴尔虎旗| 肃宁县| 新竹县| 清流县|