千鋒教育-做有情懷、有良心、有品質的職業教育機構

手機站
千鋒教育

千鋒學習站 | 隨時隨地免費學

千鋒教育

掃一掃進入千鋒手機站

領取全套視頻
千鋒教育

關注千鋒學習站小程序
隨時隨地免費學習課程

當前位置:首頁  >  技術干貨  > python爬蟲函數大全

python爬蟲函數大全

來源:千鋒教育
發布人:xqq
時間: 2024-02-27 07:04:29 1708988669

Python爬蟲函數大全

_x000D_

Python爬蟲是一種自動化獲取互聯網上數據的技術,它可以幫助我們快速、高效地從網頁中提取所需信息。而在Python中,有許多強大的爬蟲函數可以幫助我們實現這一目標。本文將介紹一些常用的Python爬蟲函數,并展示它們的用法和效果。

_x000D_

一、requests庫

_x000D_

requests庫是Python中最常用的HTTP庫之一,它提供了簡潔而強大的API,可以輕松地發送HTTP請求和處理響應。下面是一些常用的requests函數:

_x000D_

1. get(url, params=None, **kwargs):發送GET請求,返回一個Response對象。

_x000D_

2. post(url, data=None, json=None, **kwargs):發送POST請求,返回一個Response對象。

_x000D_

3. put(url, data=None, **kwargs):發送PUT請求,返回一個Response對象。

_x000D_

4. delete(url, **kwargs):發送DELETE請求,返回一個Response對象。

_x000D_

5. head(url, **kwargs):發送HEAD請求,返回一個Response對象。

_x000D_

二、BeautifulSoup庫

_x000D_

BeautifulSoup庫是Python中一個用于解析HTML和XML文檔的庫,它可以幫助我們從網頁中提取所需的數據。下面是一些常用的BeautifulSoup函數:

_x000D_

1. BeautifulSoup(markup, features=None):將HTML或XML文檔解析為BeautifulSoup對象。

_x000D_

2. find(name, attrs, recursive, string, **kwargs):查找第一個匹配指定條件的元素,返回一個Tag對象。

_x000D_

3. find_all(name, attrs, recursive, string, limit, **kwargs):查找所有匹配指定條件的元素,返回一個Tag對象的列表。

_x000D_

4. select(selector):使用CSS選擇器查找匹配的元素,返回一個Tag對象的列表。

_x000D_

三、re庫

_x000D_

re庫是Python中用于處理正則表達式的庫,它可以幫助我們從文本中提取所需的數據。下面是一些常用的re函數:

_x000D_

1. match(pattern, string, flags=0):從字符串的開頭匹配正則表達式,返回一個匹配對象。

_x000D_

2. search(pattern, string, flags=0):在字符串中搜索匹配正則表達式的第一個位置,返回一個匹配對象。

_x000D_

3. findall(pattern, string, flags=0):在字符串中搜索匹配正則表達式的所有位置,返回一個匹配對象的列表。

_x000D_

4. sub(pattern, repl, string, count=0, flags=0):將字符串中匹配正則表達式的部分替換為指定的字符串,返回替換后的字符串。

_x000D_

**問:如何使用requests庫發送GET請求?**

_x000D_

答:使用requests庫發送GET請求非常簡單,只需調用get函數并傳入待請求的URL即可。例如:

_x000D_

`python

_x000D_

import requests

_x000D_

response = requests.get('https://www.example.com')

_x000D_

print(response.text)

_x000D_ _x000D_

該代碼會發送一個GET請求到'https://www.example.com',并打印出響應內容。

_x000D_

**問:如何使用BeautifulSoup庫解析HTML文檔?**

_x000D_

答:使用BeautifulSoup庫解析HTML文檔也非常簡單,只需將HTML文檔傳入BeautifulSoup函數即可。例如:

_x000D_

`python

_x000D_

from bs4 import BeautifulSoup

_x000D_

html = '''

_x000D_ _x000D_ _x000D_

Example

_x000D_ _x000D_

_x000D_

Hello, World!

_x000D_

_x000D_ _x000D_

'''

_x000D_

soup = BeautifulSoup(html, 'html.parser')

_x000D_

print(soup.title.text)

_x000D_ _x000D_

該代碼會將HTML文檔解析為BeautifulSoup對象,并打印出標簽中的文本內容。</p>_x000D_ <p style="text-indent: 2em;">**問:如何使用re庫提取文本中的URL?**</p>_x000D_ <p style="text-indent: 2em;">答:使用re庫提取文本中的URL可以通過正則表達式來實現。例如,要提取文本中的所有URL,可以使用findall函數。例如:</p>_x000D_ <p style="text-indent: 2em;"><span style="color:#C7254E;background: #F9F2F4;"></span>`python</p>_x000D_ <p style="text-indent: 2em;">import re</p>_x000D_ <p style="text-indent: 2em;">text = 'Visit my website at https://www.example.com and https://www.google.com'</p>_x000D_ <p style="text-indent: 2em;">urls = re.findall(r'https?://\S+', text)</p>_x000D_ <p style="text-indent: 2em;">print(urls)</p>_x000D_ _x000D_ <p style="text-indent: 2em;">該代碼會打印出文本中的所有URL。</p>_x000D_ <p style="text-indent: 2em;">通過以上的介紹,我們可以看到Python爬蟲函數大全中的一些常用函數和它們的用法。這些函數可以幫助我們快速、高效地實現爬蟲任務。無論是發送HTTP請求、解析HTML文檔還是提取文本中的數據,Python爬蟲函數大全都能夠提供強大的支持。希望本文能夠對你有所幫助!</p>_x000D_ </div> <div id="uoot6f21iu7l" class="tag-wrap" style="margin: 30px auto 0;width: 810px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;"> <span id="uoot6f21iu7l" class="tag-label" style="font-size: 16px; line-height: 22px;margin-right: 6px;">tags:</span> <a id="tag_click" target="_blank" style="display: inline-block" href="http://www.mycheba.com/tag-0-1.html">python教程</a> </div> <div id="uoot6f21iu7l" class="con-left-bottom"> 聲明:本站稿件版權均屬千鋒教育所有,未經許可不得擅自轉載。 </div> <div id="uoot6f21iu7l" class="left-form"> <div id="uoot6f21iu7l" class="left-form-left"> <div id="uoot6f21iu7l" class="h3">10年以上業內強師集結,手把手帶你蛻變精英</div> <div id="uoot6f21iu7l" class="list-form-item"> <i class="ypfont yp-name"></i> <input type="text" placeholder="您的姓名" name="realname" id="realname" autocomplete="off" /> </div> <div id="uoot6f21iu7l" class="list-form-item list-form-item2"> <i class="ypfont yp-shouji"></i> <input type="text" placeholder="您的電話" name="realphone" id="phone" autocomplete="off" /> </div> <div id="uoot6f21iu7l" class="h4">請您保持通訊暢通,專屬學習老師24小時內將與您1V1溝通</div> <div id="uoot6f21iu7l" class="list-submit"> 免費領取<br /><i class="ypfont yp-dianjitianjia"></i> </div> </div> <div id="uoot6f21iu7l" class="left-form-right"> <div id="uoot6f21iu7l" class="h3">今日已有<span>369</span>人領取成功</div> <div id="uoot6f21iu7l" class="swiper-container swiper-phone swiper-no-swiping"> <div id="uoot6f21iu7l" class="swiper-wrapper"> <div id="uoot6f21iu7l" class="swiper-slide"> 劉同學 138****2860 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 王同學 131****2015 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 張同學 133****4652 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 李同學 135****8607 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 楊同學 132****5667 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 岳同學 134****6652 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 梁同學 157****2950 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 劉同學 189****1015 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 張同學 155****4678 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 鄒同學 139****2907 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 董同學 138****2867 剛剛成功領取 </div> <div id="uoot6f21iu7l" class="swiper-slide"> 周同學 136****3602 剛剛成功領取 </div> </div> </div> </div> </div> </div> <div id="uoot6f21iu7l" class="c_page_bottom"> <div id="uoot6f21iu7l" class="c_page_bottom_item"> <div id="uoot6f21iu7l" class="c_page_bottom_item_up"></div> <p>上一篇</p> <a href="http://www.mycheba.com/about/BBS/287809.html" title="287811" target="_blank">python求最小值函數</a> </div> <div id="uoot6f21iu7l" class="c_page_bottom_item"> <div id="uoot6f21iu7l" class="c_page_bottom_item_next"></div> <p>下一篇</p> <a href="http://www.mycheba.com/about/BBS/287814.html" target="_blank" title="287811">python畫圖函數大全</a> </div> </div> <div id="uoot6f21iu7l" class="left-ad"> <a href="javascript:;" onclick="open53_pc()" rel="nofollow" class="left-ad-btn"> 免費打包獲取<i class="ypfont yp-dianjitianjia"></i> </a> </div> <!-- <div id="uoot6f21iu7l" class="article"> <div id="uoot6f21iu7l" class="article-left"> <h3 class="art-tit">猜你喜歡<span>LIKE</span></h3> <div id="uoot6f21iu7l" class="art-con"> <a href="http://www.mycheba.com/zcjy/wlaq/268563.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty45.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <h4>網絡安全現在的就業薪資怎么樣</h4> <span> <i class="ypfont yp-shijian"></i> 2023-12-25 </span> </div> </a> <a href="http://www.mycheba.com/zcjy/wlaq/268562.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty46.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <h4>學習網絡安全編程好就業嗎</h4> <span> <i class="ypfont yp-shijian"></i> 2023-12-25 </span> </div> </a> <a href="http://www.mycheba.com/zcjy/wlaq/268560.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty47.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <h4>網絡安全編程就業方向如何</h4> <span> <i class="ypfont yp-shijian"></i> 2023-12-25 </span> </div> </a> </div> </div> <div id="uoot6f21iu7l" class="article-right"> <h3 class="art-tit">最新文章<span>NEW</span></h3> <div id="uoot6f21iu7l" class="art-con"> <a href="http://www.mycheba.com/about/BBS/287996.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty47.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <h4>pycharm與python版本匹配</h4> <span> <i class="ypfont yp-shijian"></i> 2024-02-27 </span> </div> </a> <a href="http://www.mycheba.com/about/BBS/287871.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty49.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <h4>python魔法函數大全</h4> <span> <i class="ypfont yp-shijian"></i> 2024-02-27 </span> </div> </a> <a href="http://www.mycheba.com/about/BBS/287869.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/tongyong2.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <h4>python里面openpyxl怎么用</h4> <span> <i class="ypfont yp-shijian"></i> 2024-02-27 </span> </div> </a> </div> </div> </div> --> <div id="uoot6f21iu7l" class="article article-hot" style="margin-top: 20px"> <div id="uoot6f21iu7l" class="article-tit-box"> <div id="uoot6f21iu7l" class="art-tit h3"> 相關推薦<span id="uoot6f21iu7l" class="art-hot">HOT</span> </div> <!-- <a href="javascript:;" onclick="open53_pc()">更多>></a> --> </div> <div id="uoot6f21iu7l" class="art-con"> <a href="http://www.mycheba.com/about/BBS/287903.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty69.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <div id="uoot6f21iu7l" class="h4">append在python中的作用</div> <p> **append在python中的作用**_x000D_在Python編程語言中,append()是一種常用的列表操作函數,用于在列表末尾添加元素。它的作用是將給定的對象...<span>詳情>></span> </p> <span>2024-02-27 13:43:35</span> </div> </a> <a href="http://www.mycheba.com/about/BBS/287886.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty50.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <div id="uoot6f21iu7l" class="h4">在python中調用process類</div> <p> 在Python中,調用Process類是一種常見的多進程編程方式。Process類是multiprocessing模塊中的一個重要組件,它允許我們創建和控制子進程,實現...<span>詳情>></span> </p> <span>2024-02-27 12:04:03</span> </div> </a> <a href="http://www.mycheba.com/about/BBS/287857.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/tongyong12.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <div id="uoot6f21iu7l" class="h4">python轉字符串函數</div> <p> **Python轉字符串函數的強大威力**_x000D_Python作為一種高級編程語言,提供了許多強大的函數和方法,其中轉字符串函數是非常重要的一個。在Pyt...<span>詳情>></span> </p> <span>2024-02-27 10:07:36</span> </div> </a> <a href="http://www.mycheba.com/about/BBS/287847.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty70.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <div id="uoot6f21iu7l" class="h4">python編寫一個函數</div> <p> **Python編寫一個函數:簡化代碼,提高效率**_x000D_**Python編寫一個函數**_x000D_Python是一種高級編程語言,它以其簡潔的語法和強大的功能而...<span>詳情>></span> </p> <span>2024-02-27 09:25:55</span> </div> </a> <a href="http://www.mycheba.com/about/BBS/287845.html" target="_blank" class="art-item"> <div id="uoot6f21iu7l" class="art-item-img"> <img src="/tywzt/ty56.jpg" alt="" /> </div> <div id="uoot6f21iu7l" class="art-item-info"> <div id="uoot6f21iu7l" class="h4">python給dataframe添加一列</div> <p> Python是一種功能強大的編程語言,廣泛用于數據分析和處理。在數據分析過程中,我們經常需要對數據進行處理和轉換,其中包括給DataFrame添加新...<span>詳情>></span> </p> <span>2024-02-27 09:18:00</span> </div> </a> </div> </div> </div> </div> <div id="uoot6f21iu7l" class="con-right"> <div id="uoot6f21iu7l" class="con-right-rywd"> <div id="uoot6f21iu7l" class="rywd-tit h3"> <i class="ypfont yp-weinituijian"></i>熱門推薦 </div> <div id="uoot6f21iu7l" class="swiper3"> <a href="http://www.mycheba.com/about/BBS/288002.html" target="_blank"> <div id="uoot6f21iu7l" class="ypfont yp-zhiding"></div> <p>pycharm對應的python版本</p> <span id="uoot6f21iu7l" class="a11">沸</span> </a> <a href="http://www.mycheba.com/about/BBS/287999.html" target="_blank"> <div id="uoot6f21iu7l" class="ypfont yp-1"></div> <p>pycharm和python版本對應</p> <span id="uoot6f21iu7l" class="a21">熱</span> </a> <a href="http://www.mycheba.com/about/BBS/287996.html" target="_blank"> <div id="uoot6f21iu7l" class="ypfont yp-2"></div> <p>pycharm與python版本匹配</p> <span id="uoot6f21iu7l" class="a31">熱</span> </a> <a href="http://www.mycheba.com/about/BBS/287909.html" target="_blank"> <div id="uoot6f21iu7l" class="ypfont yp-3"></div> <p>append是什么意思python</p> <span id="uoot6f21iu7l" class="a41">新</span> </a> <a href="http://www.mycheba.com/about/BBS/287907.html" target="_blank"> <div id="uoot6f21iu7l" class="a5"> 4 </div> <p>append在python中的用法</p> </a> <a href="http://www.mycheba.com/about/BBS/287905.html" target="_blank"> <div id="uoot6f21iu7l" class="a6"> 5 </div> <p>append在python中的含義</p> </a> <a href="http://www.mycheba.com/about/BBS/287903.html" target="_blank"> <div id="uoot6f21iu7l" class="a7"> 6 </div> <p>append在python中的作用</p> </a> <a href="http://www.mycheba.com/about/BBS/287901.html" target="_blank"> <div id="uoot6f21iu7l" class="a8"> 7 </div> <p>.format在python中的用法</p> </a> <a href="http://www.mycheba.com/about/BBS/287890.html" target="_blank"> <div id="uoot6f21iu7l" class="a9"> 8 </div> <p>高中python常用函數</p> </a> <a href="http://www.mycheba.com/about/BBS/287888.html" target="_blank"> <div id="uoot6f21iu7l" class="a10"> 9 </div> <p>屬于python內置函數</p> </a> </div> <!-- <div id="uoot6f21iu7l" class="swiper-button-prev swiper-button-prev3"> <i class="indexfont index-youjiantou-copy"></i> </div> <div id="uoot6f21iu7l" class="swiper-button-next swiper-button-next3"> <i class="ypfont yp-huanyipi"></i>換一批 </div> --> </div> <!-- 面試題庫 --> <a href="javascript:;" rel="nofollow" onclick="open53_pc()" class="right-ad"> <img src="/images/right-ad.jpg" alt="" /></a> <!-- 技術干貨 --> <div id="uoot6f21iu7l" class="con-right-rywd"> <div id="uoot6f21iu7l" class="tk-tit h3"> <a class="left" href="http://www.mycheba.com/about/BBS/" target="_blank"><i class="ypfont yp-fabujishu" ></i>技術干貨</a> <a href="http://www.mycheba.com/about/BBS/" target="_blank">更多>></a> </div> <div id="uoot6f21iu7l" class="swiper2 "> <a href="http://www.mycheba.com/about/BBS/258998.html" class="swiper-slide" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/ty33.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">如何實現服務器負載均衡</div> <p>2023-12-06</p> </div> </a> <a href="http://www.mycheba.com/about/BBS/258997.html" class="swiper-slide" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/tongyong12.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">linux有哪些優勢和劣勢</div> <p>2023-12-06</p> </div> </a> <a href="http://www.mycheba.com/about/BBS/258996.html" class="swiper-slide" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/ty64.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">linux需要驅動嗎</div> <p>2023-12-06</p> </div> </a> <a href="http://www.mycheba.com/about/BBS/258995.html" class="swiper-slide" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/tongyong7.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">android與linux的區別</div> <p>2023-12-06</p> </div> </a> <a href="http://www.mycheba.com/about/BBS/258994.html" class="swiper-slide" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/ty64.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">如何搭建基于容器的深度學習環境</div> <p>2023-12-06</p> </div> </a> </div> </div> <!-- 職場就業 --> <div id="uoot6f21iu7l" class="con-right-rywd"> <div id="uoot6f21iu7l" class="tk-tit h3"> <a class="left" href="http://www.mycheba.com/zcjy/" target="_blank"><i class="ypfont yp-minzhengtubiao1-46" ></i>職場就業</a> <a href="http://www.mycheba.com/zcjy/" target="_blank">更多>></a> </div> <div id="uoot6f21iu7l" class="swiper2 "> <a href="http://www.mycheba.com/zcjy/wlaq/259025.html" class="swiper-slide zcjy" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/ty41.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">網絡安全軟件開發的就業前景</div> <p>2023-12-09</p> </div> </a> <a href="http://www.mycheba.com/zcjy/python/259024.html" class="swiper-slide zcjy" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/tongyong6.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">學會python工程師后的就業前景</div> <p>2023-12-09</p> </div> </a> <a href="http://www.mycheba.com/zcjy/java/259023.html" class="swiper-slide zcjy" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//tywzt/tongyong2.jpg" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">學會java工程師后的就業前景</div> <p>2023-12-09</p> </div> </a> <a href="http://www.mycheba.com/zcjy/linux/136992.html" class="swiper-slide zcjy" target="_blank"> <div id="uoot6f21iu7l" class="img-box"> <img src="http://www.mycheba.com//2023/0428/1682660765277.png" alt="" /> </div> <div> <div id="uoot6f21iu7l" class="h3">云計算技術就業前景以及發展方向怎樣?</div> <p>2023-08-07</p> </div> </a> </div> </div> <!-- 快速通道 --> <div id="uoot6f21iu7l" class="con-right-rywd"> <div id="uoot6f21iu7l" class="rywd-tit h3"> <i class="ypfont yp-weinituijian"></i>快速通道 </div> <ul class="kstd"> <li> <div id="uoot6f21iu7l" class="h3">培訓機構</div> <a href="http://www.mycheba.com/training/" target="_blank">了解培訓相關</a> </li> <li> <div id="uoot6f21iu7l" class="h3">就業前景</div> <a href="http://www.mycheba.com/zcjy/" target="_blank">查看就業前景</a> </li> <li> <div id="uoot6f21iu7l" class="h3">培訓門檻</div> <a href="http://www.mycheba.com/ljc/" target="_blank">了解學習門檻</a> </li> <li> <div id="uoot6f21iu7l" class="h3">應聘面試</div> <a href="http://www.mycheba.com/interview/" target="_blank">常見面試考題</a> </li> <li> <div id="uoot6f21iu7l" class="h3">就業服務</div> <a href="http://www.mycheba.com/employ/" target="_blank" rel="nofollow">畢業推薦就業</a> </li> <li> <div id="uoot6f21iu7l" class="h3">師資團隊</div> <a href="http://www.mycheba.com/teachers/" target="_blank" rel="nofollow">了解師資團隊</a> </li> </ul> </div> </div> </div> </div> </div> </div> <link rel="stylesheet" href="/css/css3451.css"> <div id="uoot6f21iu7l" class="edu-footer"> <div id="uoot6f21iu7l" class="base"> <div id="uoot6f21iu7l" class="con-left"> <img src="http://www.mycheba.com/images_index/new-logo-white.png" class="edu-footer-logo" /> <p class="edu-footer-sologan">初心至善  匠心育人</p> <p class="edu-footer-phoneNumber"> <i class="icon icon-dianhua1"></i>400-811-9990 <a href="javascript:;" onclick="open53_pc()" rel="nofollow">24小時在線咨詢</a> </p> </div> <div id="uoot6f21iu7l" class="con-right"> <div id="uoot6f21iu7l" class="edu-footer-about-links"> <div id="uoot6f21iu7l" class="list1 list"> <div id="uoot6f21iu7l" class="h4">關于千鋒</div> <ul> <li> <a href="http://www.mycheba.com/about/" target="_blank" rel="nofollow">千鋒簡介</a> </li> <li> <a href="http://www.mycheba.com/about/contact.html" target="_blank" rel="nofollow">聯系我們</a> </li> <li> <a href="http://www.mycheba.com/qynx/" target="_blank" rel="nofollow">企業服務</a> </li> <li> <a href="http://www.mycheba.com/topic/fygy.html" target="_blank" rel="nofollow">鋒益公益</a> </li> </ul> </div> <div id="uoot6f21iu7l" class="list1 list"> <div id="uoot6f21iu7l" class="h4">學習資源</div> <ul> <li> <a target="_blank" rel="nofollow">項目庫</a> </li> <li> <a href="http://www.mycheba.com/open/" target="_blank" rel="nofollow">公開課</a> </li> <li> <a target="_blank" rel="nofollow">視頻教程</a> </li> <!-- <li> <a href="http://www.mycheba.com/book/index.html?type=1" target="_blank" rel="nofollow">原創叢書</a> </li> --> </ul> </div> <div id="uoot6f21iu7l" class="list1 list"> <div id="uoot6f21iu7l" class="h4">服務指南</div> <ul> <li> <a href="javascript:;" onclick="open53_pc()" rel="nofollow">報名咨詢</a> </li> <li> <a href="javascript:;" onclick="open53_pc()" rel="nofollow">校區分布</a> </li> <li> <a href="http://www.mycheba.com/sitemap.html" target="_blank" rel="nofollow">網站地圖</a> </li> <li> <a href="http://www.mycheba.com/privacyPolicy.html" target="_blank" rel="nofollow">隱私聲明</a> </li> </ul> </div> </div> <div id="uoot6f21iu7l" class="qrcode-box"> <div id="uoot6f21iu7l" class="qrcode flex-center"> <img src="/wzt/qr-code-new.png" alt="千鋒教育" /> </div> <div id="uoot6f21iu7l" class="h4">千鋒學習站 | <span>隨時隨地免費學</span></div> </div> <div id="uoot6f21iu7l" class="qrcode-box"> <div id="uoot6f21iu7l" class="qrcode flex-center"> <img src="http://www.mycheba.com/images_index/qr-code-new2.png" alt="千鋒教育" /> </div> <div id="uoot6f21iu7l" class="h4">掃一掃進入千鋒手機站</div> </div> </div> </div> </div> <div id="uoot6f21iu7l" class="footer-link"> <div id="uoot6f21iu7l" class="base"> <div id="uoot6f21iu7l" class="links-tab"> <span id="uoot6f21iu7l" class="active">熱門課程</span> <!-- <span>熱點話題</span> --> <!-- <span>學習線路圖</span> --> <!-- <span>千鋒全國</span> --> </div> <div id="uoot6f21iu7l" class="links-a active"> <!-- 編輯配置cms --> <a href="http://www.mycheba.com/" target="_blank">IT培訓</a> <a target="_blank">java培訓</a> <a href="http://www.mycheba.com/special/harmonyos.html" target="_blank">鴻蒙開發培訓</a> <a href="http://www.mycheba.com/special/emb.html" target="_blank">嵌入式培訓</a> <a href="http://www.mycheba.com/special/python.html" target="_blank">python培訓</a> <a href="http://www.mycheba.com/special/ui.html" target="_blank">UI培訓</a> <a href="http://www.mycheba.com/special/test.html" target="_blank">軟件測試培訓</a> <a href="http://www.mycheba.com/special/linux.html" target="_blank">云計算培訓</a> <a href="http://www.mycheba.com/special/bigdata.html" target="_blank">大數據培訓</a> <a href="http://www.mycheba.com/special/wlw.html" target="_blank">物聯網培訓</a> <a href="http://www.mycheba.com/special/wlw.html" target="_blank">游戲開發培訓</a> <a href="http://www.mycheba.com/special/qmt.html" target="_blank">全媒體運營培訓</a> <a href="http://www.mycheba.com/special/ysjj.html" target="_blank">影視剪輯培訓</a> <a href="http://www.mycheba.com/special/wlaq.html" target="_blank">網絡安全培訓</a> </div> <!-- <div id="uoot6f21iu7l" class="links-a"> --> <!-- 編輯配置cms3490 --> <!-- </div> --> <!-- <div id="uoot6f21iu7l" class="links-a"> 編輯配置cms 3442 </div> --> <!-- <div id="uoot6f21iu7l" class="links-a"> --> <!-- 編輯配置cms3443 --> <!-- </div> --> </div> <div id="uoot6f21iu7l" class="copyright"> <p class="copyright-p"> Copyright 2011-2025 <a href="javascript:;" rel="nofollow" title="千鋒互聯">北京千鋒互聯科技有限公司</a> <a rel="nofollow"> 京ICP備12003911號-3 </a> <a target="_blank" rel="nofollow" style="display: inline-block;text-decoration: none;height: 20px;line-height: 20px;"> <img src="/wzt/beian.png" />京公網安備 11010802030320號 </a> </p> <p>千鋒教育 運營主體:北京千鋒互聯科技有限公司,屬具備計算機技術培訓資質的教育培訓機構。</p> </div> </div> <script src="http://www.mycheba.com/js/jquery.min.js"></script> <script src="http://www.mycheba.com/js/swiper4.5.0.min.js"></script> <script src="http://www.mycheba.com/js/common1.js?111"></script> <script src="/js/highlight.min.js"></script> <script> hljs.highlightAll(); var str = $(".content-con .con-left").html() + "" var newstr = str.replace(new RegExp("_x000D_", "gm"), ""); $(".content-con .con-left").html(newstr); if (location.href.indexOf("/about/BBS/") > -1) { $(".nav_right_bg .nav").eq(10).removeClass("topicactive") $(".nav_right_bg .nav").eq(9).addClass("topicactive") } if (location.href.indexOf("/about/info/") > -1) { $(".nav_right_bg .nav").eq(10).removeClass("topicactive") $(".nav_right_bg .nav").eq(8).addClass("topicactive") } $(document).ready(function () { var href = $("#tag_click").attr("href"); if (href && href.indexOf("-0-") != -1) { var tag_code = $("#tag_click").html(); $.ajax({ url: "http://app.mobiletrain.org/tags.php", type: "get", dataType: "json", data: { tag_code: tag_code }, success: function (data) { $("#tag_click").attr( "href", "http://www.mycheba.com/tag-" + data + "-1.html" ); }, }); } }); new Swiper(".swiper1", { loop: true, autoplay: true, pagination: { el: ".swiper-pagination1", }, }); new Swiper(".swiper-news", { autoplay: true, loop: true, direction: "vertical", }); $(".footer-link .links-tab span").click(function () { $(this).addClass("active").siblings().removeClass("active"); $(".footer-link .links-a").removeClass("active"); $(".footer-link .links-a").eq($(this).index()).addClass("active"); }); // 開班信息模塊 function kbxx () { // var courseId = // arguments.length > 0 && arguments[0] !== undefined // ? arguments[0] // : 13; var cityId = arguments[0] !== undefined ? arguments[0] : 10; $.ajax({ url: "https://owzsapi.qfedu.com/v1/api/openApiRestController/getAllClass?type=1", type: "GET", success: function success (res) { var r = ""; var curTime = new Date().getTime(); var filterArr = res.data.filter(function (v) { return v.cityId == cityId; }); console.log(filterArr); filterArr.reverse().forEach(function (v, idx) { // 最大條數 if (idx > 14) return; // 判斷時間 var timeMode = "預約占座"; var kbTime = new Date(v.beginTime).getTime(); // 一個月 if (kbTime - curTime > 2592000000) { timeMode = "預約占座"; } if (kbTime - curTime > 0 && kbTime - curTime < 2642268030) { timeMode = "即將報滿"; } if (kbTime - curTime < 0) { timeMode = "爆滿開班"; } r += "<li id="uoot6f21iu7l" class='swiper-slide'>\n <a href='javascript:;' rel='nofollow' onclick='open53_pc()'>\n <span>" + (v.name.replace(v.cityName, "").split("班")[0] + "班") + "</span>\n <span>" + v.beginTime + "</span>\n <span data-mode='" + (timeMode === "即將報滿" ? 0 : timeMode === "爆滿開班" ? 2 : 1) + "'>" + timeMode + " " + (timeMode === "即將報滿" ? "" : "") + "</span>\n </a>\n </li>"; }); $(".des-right-classes .swiper-wrapper").html(r); new Swiper(".swiper6", { slidesPerView: 5, slidesPerGroup: 5, spaceBetween: 10, loop: true, autoplay: true, direction: "vertical", }); }, }); } kbxx(10); $(".kbxx_showXq_btn").click(function () { $(".kbxx_showXq_box").css("display", "block"); }); $(".kbxx_showXq_box ul li").click(function () { kbxx($(this).data("cityid")); $(".choose-xq").html($(this).context.innerText); $(".kbxx_showXq_box").css("display", "none"); }); if ( $(".content-left-box-child").height() > $(".content-right-box-child").height() ) { $(".content-right-box-child").addClass("sticky"); } else if ( $(".content-left-box-child").height() < $(".content-right-box-child").height() ) { $(".content-left-box-child").addClass("sticky"); } </script> <a href="http://www.mycheba.com/">久久亚洲中文字幕精品一区四,亚洲日本另类欧美一区二区,久久久久久久这里只有免费费精品,高清国产激情视频在线观看</a> <div style="position:fixed;left:-9000px;top:-9000px;"></div> <a href="http://beatimeproduction.com" target="_blank">日本视频观看无卡免费精品页码 </a>| <a href="http://jw017.com" target="_blank">亚洲欧美日韩另类一区 </a>| <a href="http://drmelly.com" target="_blank">亚洲日韩欧美国产精品区 </a>| <a href="http://dghaimu.com" target="_blank">亚洲精品国产品国语在线观看 </a>| <a href="http://drpawanjain.com" target="_blank">综合福利久久一级免费 </a>| <a href="http://692512.com" target="_blank">亚洲国产精品日韩专区a∨ 中文字幕在线有码午夜 </a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"slide":{"type":"slide","bdImg":"0","bdPos":"left","bdTop":"100"}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script> </body><div id="k3mao" class="pl_css_ganrao" style="display: none;"><menu id="k3mao"></menu><dl id="k3mao"><pre id="k3mao"><sup id="k3mao"><menu id="k3mao"></menu></sup></pre></dl><em id="k3mao"></em><meter id="k3mao"></meter><table id="k3mao"></table><tbody id="k3mao"></tbody><dfn id="k3mao"></dfn><dfn id="k3mao"></dfn><pre id="k3mao"><em id="k3mao"><strike id="k3mao"><label id="k3mao"></label></strike></em></pre><td id="k3mao"><table id="k3mao"><ins id="k3mao"><wbr id="k3mao"></wbr></ins></table></td><strike id="k3mao"></strike><code id="k3mao"><em id="k3mao"><thead id="k3mao"><dfn id="k3mao"></dfn></thead></em></code><em id="k3mao"></em><pre id="k3mao"><pre id="k3mao"><strike id="k3mao"><label id="k3mao"></label></strike></pre></pre><sub id="k3mao"></sub><dl id="k3mao"><optgroup id="k3mao"><sub id="k3mao"><strike id="k3mao"></strike></sub></optgroup></dl><sub id="k3mao"></sub><meter id="k3mao"></meter><input id="k3mao"><abbr id="k3mao"><xmp id="k3mao"><sup id="k3mao"></sup></xmp></abbr></input><menuitem id="k3mao"><dl id="k3mao"><nobr id="k3mao"><delect id="k3mao"></delect></nobr></dl></menuitem><var id="k3mao"></var><th id="k3mao"><tt id="k3mao"><var id="k3mao"><small id="k3mao"></small></var></tt></th><dfn id="k3mao"></dfn><delect id="k3mao"></delect><delect id="k3mao"></delect><ul id="k3mao"><strike id="k3mao"><var id="k3mao"><dd id="k3mao"></dd></var></strike></ul><small id="k3mao"><samp id="k3mao"><dl id="k3mao"><small id="k3mao"></small></dl></samp></small><dfn id="k3mao"></dfn><thead id="k3mao"></thead><abbr id="k3mao"><xmp id="k3mao"><sup id="k3mao"><rp id="k3mao"></rp></sup></xmp></abbr><tr id="k3mao"><strong id="k3mao"><dfn id="k3mao"><strike id="k3mao"></strike></dfn></strong></tr><menuitem id="k3mao"><code id="k3mao"><small id="k3mao"><form id="k3mao"></form></small></code></menuitem><td id="k3mao"></td><tt id="k3mao"><dl id="k3mao"><tbody id="k3mao"><delect id="k3mao"></delect></tbody></dl></tt><noframes id="k3mao"></noframes><menu id="k3mao"><li id="k3mao"><dd id="k3mao"><dl id="k3mao"></dl></dd></li></menu><dl id="k3mao"></dl><tfoot id="k3mao"><input id="k3mao"><pre id="k3mao"><div id="k3mao"></div></pre></input></tfoot><ul id="k3mao"></ul><pre id="k3mao"></pre><nobr id="k3mao"></nobr><code id="k3mao"><kbd id="k3mao"><tr id="k3mao"><dfn id="k3mao"></dfn></tr></kbd></code><strong id="k3mao"></strong><dd id="k3mao"><dl id="k3mao"><abbr id="k3mao"><sub id="k3mao"></sub></abbr></dl></dd><wbr id="k3mao"><video id="k3mao"><sub id="k3mao"><sup id="k3mao"></sup></sub></video></wbr><strike id="k3mao"><form id="k3mao"><center id="k3mao"><thead id="k3mao"></thead></center></form></strike><pre id="k3mao"></pre><code id="k3mao"><em id="k3mao"><tr id="k3mao"><legend id="k3mao"></legend></tr></em></code><rt id="k3mao"><tbody id="k3mao"><meter id="k3mao"><acronym id="k3mao"></acronym></meter></tbody></rt><dfn id="k3mao"><rt id="k3mao"><em id="k3mao"><meter id="k3mao"></meter></em></rt></dfn><td id="k3mao"></td><abbr id="k3mao"><sup id="k3mao"><sup id="k3mao"><form id="k3mao"></form></sup></sup></abbr><delect id="k3mao"><acronym id="k3mao"><small id="k3mao"><tt id="k3mao"></tt></small></acronym></delect><delect id="k3mao"></delect><legend id="k3mao"><small id="k3mao"><menuitem id="k3mao"><rt id="k3mao"></rt></menuitem></small></legend><thead id="k3mao"><strong id="k3mao"><sup id="k3mao"><span id="k3mao"></span></sup></strong></thead><samp id="k3mao"><code id="k3mao"><small id="k3mao"><form id="k3mao"></form></small></code></samp><form id="k3mao"><ins id="k3mao"><input id="k3mao"><abbr id="k3mao"></abbr></input></ins></form><code id="k3mao"></code><wbr id="k3mao"></wbr><sub id="k3mao"><strike id="k3mao"><li id="k3mao"><center id="k3mao"></center></li></strike></sub><sup id="k3mao"><menuitem id="k3mao"><form id="k3mao"><ins id="k3mao"></ins></form></menuitem></sup><samp id="k3mao"></samp><noframes id="k3mao"><samp id="k3mao"><var id="k3mao"><small id="k3mao"></small></var></samp></noframes><strike id="k3mao"></strike><small id="k3mao"></small><legend id="k3mao"></legend><code id="k3mao"><small id="k3mao"><form id="k3mao"><strong id="k3mao"></strong></form></small></code><video id="k3mao"></video><strike id="k3mao"><label id="k3mao"><tt id="k3mao"><tfoot id="k3mao"></tfoot></tt></label></strike><tt id="k3mao"></tt><big id="k3mao"><input id="k3mao"><pre id="k3mao"><div id="k3mao"></div></pre></input></big><tt id="k3mao"></tt><em id="k3mao"><delect id="k3mao"><s id="k3mao"><th id="k3mao"></th></s></delect></em><th id="k3mao"></th><label id="k3mao"></label><menu id="k3mao"><button id="k3mao"><big id="k3mao"><input id="k3mao"></input></big></button></menu><pre id="k3mao"></pre><ul id="k3mao"></ul><rp id="k3mao"><thead id="k3mao"><label id="k3mao"><optgroup id="k3mao"></optgroup></label></thead></rp><em id="k3mao"><tr id="k3mao"><legend id="k3mao"><noframes id="k3mao"></noframes></legend></tr></em><li id="k3mao"><center id="k3mao"><label id="k3mao"><optgroup id="k3mao"></optgroup></label></center></li><legend id="k3mao"></legend><code id="k3mao"><small id="k3mao"><form id="k3mao"><strong id="k3mao"></strong></form></small></code><small id="k3mao"><tt id="k3mao"><dl id="k3mao"><pre id="k3mao"></pre></dl></tt></small><dfn id="k3mao"></dfn><nobr id="k3mao"><em id="k3mao"><acronym id="k3mao"><noframes id="k3mao"></noframes></acronym></em></nobr><meter id="k3mao"></meter><table id="k3mao"></table><tfoot id="k3mao"><label id="k3mao"><delect id="k3mao"><acronym id="k3mao"></acronym></delect></label></tfoot><video id="k3mao"></video><li id="k3mao"></li><strike id="k3mao"><menu id="k3mao"><tt id="k3mao"><big id="k3mao"></big></tt></menu></strike><center id="k3mao"></center><sup id="k3mao"></sup><ul id="k3mao"></ul><em id="k3mao"><delect id="k3mao"><s id="k3mao"><th id="k3mao"></th></s></delect></em><li id="k3mao"></li><ul id="k3mao"><dfn id="k3mao"><var id="k3mao"><small id="k3mao"></small></var></dfn></ul><li id="k3mao"></li><menuitem id="k3mao"><table id="k3mao"><kbd id="k3mao"><wbr id="k3mao"></wbr></kbd></table></menuitem><output id="k3mao"><td id="k3mao"><var id="k3mao"><ins id="k3mao"></ins></var></td></output><nobr id="k3mao"><meter id="k3mao"><s id="k3mao"><noframes id="k3mao"></noframes></s></meter></nobr><pre id="k3mao"></pre><tbody id="k3mao"><em id="k3mao"><strike id="k3mao"><label id="k3mao"></label></strike></em></tbody><dl id="k3mao"><optgroup id="k3mao"><sup id="k3mao"><strike id="k3mao"></strike></sup></optgroup></dl><center id="k3mao"><dl id="k3mao"><optgroup id="k3mao"><sub id="k3mao"></sub></optgroup></dl></center><label id="k3mao"><button id="k3mao"><big id="k3mao"><input id="k3mao"></input></big></button></label><ins id="k3mao"></ins><delect id="k3mao"><s id="k3mao"><th id="k3mao"><menuitem id="k3mao"></menuitem></th></s></delect><span id="k3mao"></span><dfn id="k3mao"><ul id="k3mao"><span id="k3mao"><code id="k3mao"></code></span></ul></dfn><menu id="k3mao"></menu><sup id="k3mao"></sup><rt id="k3mao"><tbody id="k3mao"><delect id="k3mao"><acronym id="k3mao"></acronym></delect></tbody></rt><small id="k3mao"><samp id="k3mao"><dl id="k3mao"><nobr id="k3mao"></nobr></dl></samp></small><strike id="k3mao"></strike><dd id="k3mao"></dd><small id="k3mao"></small><s id="k3mao"><small id="k3mao"><menuitem id="k3mao"><dl id="k3mao"></dl></menuitem></small></s><var id="k3mao"><center id="k3mao"><label id="k3mao"><optgroup id="k3mao"></optgroup></label></center></var><samp id="k3mao"><tfoot id="k3mao"><nobr id="k3mao"><em id="k3mao"></em></nobr></tfoot></samp><small id="k3mao"><samp id="k3mao"><dl id="k3mao"><em id="k3mao"></em></dl></samp></small><ul id="k3mao"></ul><ins id="k3mao"></ins><delect id="k3mao"><s id="k3mao"><th id="k3mao"><menuitem id="k3mao"></menuitem></th></s></delect><tfoot id="k3mao"></tfoot><legend id="k3mao"><noframes id="k3mao"><td id="k3mao"><var id="k3mao"></var></td></noframes></legend><center id="k3mao"><dl id="k3mao"><optgroup id="k3mao"><sub id="k3mao"></sub></optgroup></dl></center><dfn id="k3mao"></dfn><dfn id="k3mao"><dl id="k3mao"><em id="k3mao"><delect id="k3mao"></delect></em></dl></dfn><menuitem id="k3mao"></menuitem><menuitem id="k3mao"></menuitem><dfn id="k3mao"></dfn><var id="k3mao"></var><legend id="k3mao"></legend><abbr id="k3mao"></abbr><tfoot id="k3mao"></tfoot><wbr id="k3mao"><strong id="k3mao"><ul id="k3mao"><span id="k3mao"></span></ul></strong></wbr><i id="k3mao"><small id="k3mao"><meter id="k3mao"><optgroup id="k3mao"></optgroup></meter></small></i><kbd id="k3mao"></kbd><wbr id="k3mao"></wbr><i id="k3mao"><small id="k3mao"><wbr id="k3mao"><optgroup id="k3mao"></optgroup></wbr></small></i><li id="k3mao"><center id="k3mao"><dl id="k3mao"><optgroup id="k3mao"></optgroup></dl></center></li><s id="k3mao"><small id="k3mao"><menuitem id="k3mao"><dl id="k3mao"></dl></menuitem></small></s><kbd id="k3mao"><tr id="k3mao"><dfn id="k3mao"><dfn id="k3mao"></dfn></dfn></tr></kbd><span id="k3mao"><var id="k3mao"><center id="k3mao"><dl id="k3mao"></dl></center></var></span><dfn id="k3mao"></dfn><li id="k3mao"><thead id="k3mao"><dl id="k3mao"><abbr id="k3mao"></abbr></dl></thead></li><big id="k3mao"></big></div> </html>