TypeError:' type'对象不可订阅

时间:2017-03-26 18:27:37

标签: python

data_path = "/home/nikitha/Desktop/SOftmax/cifar-10-batches-bin/data_batch_1"

fo = open(data_path,'rb')
fo.seek(0)
fo.seek(0)
dict = (pickle.load(fo,encoding='bytes'))
l=np.array(dict[b'labels'])
d=np.array(dict[b'data'])
l=np.array(dict[b'labels'])
  

TypeError:' type'对象不可订阅

这是我运行代码时得到的上述错误

2 个答案:

答案 0 :(得分:0)

请参阅此回答here

您正在尝试分配'输入'对某事,但'键入'已存在于python中。

答案 1 :(得分:0)

在Python中, dict type 'type'的对象。  您不能将其用作变量。