import numpy as np
a = [1,2,3]—有一層,說明是一維的,,,a.shape=(3,)
a = [[1,2,3],[4,5,6]]—有兩層,說明是二維的,,,a.shape=(2,3)
a = [[1],[2],[3]]—有兩層,說明是二維的,,,a.shape=(3,1)
需要重點注意的是列表list是沒有shape屬性的,需要將其轉換為陣列,如下可以有兩種表示方式。
b =[[
1,2,
3],[
4,5,
6],[
7,8,
9]]print
(np.shape(b)
)print
(np.array(b)
.shape)
如果直接用列表的shape屬性,會報如下錯誤。
a =[[
1,2,
3],[
4,5,
6]]print
(a.shape)
attributeerror: 『list』 object has no attribute 『shape』
select標籤multiple屬性的使用方法
一 實現效果 一 實現 1 select標籤multiple屬性的使用方法未選擇操作 已選擇 荸薺 胡桃楊梅 沙棗臍橙 芒果枇杷 金桔青梅 毛桃金桔 酸橙海棠 檳榔楊桃 櫻桃芭樂 鱷梨西柚 style text align center margin bottom 10px width 90px s...
關於android裡面Shape屬性的使用
shape屬性 shape的中文意思是模型,形狀。android裡面的shape也是這個意思,它的存在就是為了為給使用者自定義圖形的提供解決方案。總而言之,你可以用它自定義做一些一些簡單的圖形。好像扯的有點多,嗯嗯,好吧,直接說用法吧 在工程上右鍵新建android xml檔案進入建立頁面,選擇re...
html中的label標籤for屬性的使用
for屬性規定label與哪個表單元素繫結。這種繫結關係是顯式關係繫結。如下 for personinfo id 個人資訊 text name personinfo name id personinfo id label標籤不需要for屬性,input標籤也不需要id屬性,而是通過label標籤中嵌...