Python高階篇之 Numpy

2021-10-03 14:48:49 字數 599 閱讀 3977

最近一直在學習python, numpy是乙個非常使用的庫。最近在研究。

學習必去的地方numpy官網

中文快速入門

現在還處於初級階段,彙總一下遇到的問題。

reshape的第二個引數。

new shape int or tuple of ints

the new shape should be compatible with the original shape.

if an integer, then the result will be a 1-d array of that length.

one shape dimension can be -1. in this case, the value is

inferred from the length of the array and remaining dimensions.

有時候會看到不是類似(4,3)這樣的輸入,有時候會看到其中乙個是-1.

這個時候,最後的形狀會根據已知的一維來進行計算。

舉個例子,如果陣列中有20個元素,這時候呼叫reshape(-1, 5),陣列會自動轉換為(4*5)的矩陣。

Python高階篇 python之函式的返回值

返回值簡介 指定返回值與隱含返回值 指定 return 返回值函式舉例 defshowplus x print x returnx 1 num showplus 6 add num 2 print add 輸出結果 隱含 return none 舉例 defshowplus x print x nu...

Python高階篇 python之函式的類的方法

類的成員可以分為三大類 字段 方法和屬性 注 所有成員中,只有普通欄位的內容儲存物件中,即 根據此類建立了多少物件,在記憶體中就有多少個普通字段。而其他的成員,則都是儲存在類中,即 無論物件的多少,在記憶體中只建立乙份。一 字段 字段包括 普通欄位和靜態字段,他們在定義和使用中有所區別,而 最本質的...

python練習 高階篇)

1 求1 2 3 4 5 99的和 count 1 s1 0 s2 0 while count 100 if count 2 0 s1 count else s2 count count 1 s s1 s2 print s 2 用python編寫程式,輸入一年份,判斷該年份是否是閏年並輸出結果 注 ...