TypeError: unsupported operand type(s) for -: ‘int‘ and ‘list‘ 解決過程

a=[1,2,3] b=np.array([4,5,6]) 運行: c=1-a 報錯: TypeError: unsupported operand type(s) for -: ‘int’ and ‘list’ 運行: c=1-b 結果: 錯誤表示:不支持 int整型和 list列表的 減法運算,列表不是numpy的數組,沒有廣播運算。 因此需要將列表列表變成numpy數組,進行廣播運算,就不會
相關文章
相關標籤/搜索