4 21學習總結

2022-07-02 14:18:09 字數 985 閱讀 8822

今天學習了有關python的一些相關知識

使用方法:

import requests//引入

def download_all_htmls():#設定乙個函式

htmls=;

url=f"

"#f是為了使字串格式化

print("

craw html

",url)

r=requests.get(url)#得到網頁內容,狀態碼應為200,不為200則異常

if r.status_code!=200:

raise exception("

error")

return

htmls

htmls=download_all_htmls()

r=requests.get()傳入乙個url

r.text得到文字形式的網頁內容

2.

def

pa(html):

soup=beautifulsoup(html,"

html.parser")

articles=soup.find_all("

artical")

datas=

for article in

articles:

title_node=(

article.find("h2

",class_="

entry_title")

.find("a"))

title=title_node.get_text()

#得到title的內容

link=title_node["

href"]

#得到title的鏈結

title

":title,"

link

":link});

return datas

3.pandas庫:用於資料探勘和資料分析,同時也提供資料清洗功能。

edm專案4 21一周學習總結

兩個主節點集群的搭建,兩台虛擬機器,分別配置好namesrv和broker 搭建完成後,使用運維監控的應用監控集群的狀態 test public void testproduce catch mqclientexception e catch interruptedexception e catch...

4 21嵌入式設計(總結)

linux支援的訊號列表如下。很多訊號是與機器的體系結構相關的 訊號值 預設處理動作 發出訊號的原因 sighup 1 a 終端掛起或者控制程序終止 sigint 2 a 鍵盤中斷 如break鍵被按下 sigquit 3 c 鍵盤的退出鍵被按下 sigill 4 c 非法指令 sigabrt 6 ...

Python高階語法 深淺拷貝 總結(4 2 1)

任何可變資料型別都牽扯到深淺拷貝 但是元組,常數等,不可變資料型別,無論淺拷貝,深拷貝都是指向 不管如何巢狀,一旦牽扯到可變資料型別,都會有深淺區別 特別注意,元組切片為淺拷貝,反正可變資料型別沒使用deepcopy一律淺拷貝 淺拷貝 乙個變數名等於另乙個東西就一定是指向,淺拷貝是拷貝頂層的 cop...