class类中__getitem__的作用,forword的作用,__call__的作用,enumerate()用法
1.__getitem__作用是可以将类中的数据像数组一样读出classTest():def__init__(self):self.data=[1,2,3,4,5]def__getitem__(self,idx):return(self.data[idx])t=Test()print(t[2])输出32.forword的作用forward()是一个神经网络模型中的方法,用于定义数据流的向前传播过程