TypeError系列之:TypeError: 'tuple' object does not support item assignment
生活随笔
收集整理的這篇文章主要介紹了
TypeError系列之:TypeError: 'tuple' object does not support item assignment
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
出現這種原因的問題是:tuple元素只能讀,不可以寫。這是初學數據類型時容易忽略的問題。
而list類型可讀可寫
上代碼:
import numpy as npa = np.zeros([5,5])b = (1,2,1)c = [1,2,1]print(type(a)) print(type(b)) print(type(c))print(c[0]) c[0] = 2 print(b[0]) b[0] = 2 #報錯輸出:
<class 'numpy.ndarray'> <class 'tuple'> <class 'list'> 1 1b[0] = 2 #報錯 TypeError: 'tuple' object does not support item assignment總結:我們在聲明數組時,有多種方式例:numpy ,直接賦值等,在直接賦值時,如果用的是“()”,則默認生成的類型為tuple;如果是"[? ]",則默認為list類型;如果是“{? }”,則默認為set類型。注,sei類型不支持索引,如果使用set[0]索引會報錯:TypeError: 'set' object does not support indexing。
我們可以通過 tuple(),list(),set() 函數進行類型轉換,但注意,這不會改變本身的性質,必須用一個新變量去接收該函數的返回值!!!
tuple,list類型均不含shape屬性,調用(a.shape或a.shape())會報錯:AttributeError: 'xxx' object has no attribute 'shape'
?
總結
以上是生活随笔為你收集整理的TypeError系列之:TypeError: 'tuple' object does not support item assignment的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: TypeError系列之:TypeErr
- 下一篇: UnicodeDecodeError: