如何在Python中声明struct的数组2d?在C ++中,我可以做到:
struct Network {
float input ;
float output ;
float delta ;
float index [10];
} ;
Network matrix [10] [10] ;
在Python中
class Network:
def __init__(self,input,output,delta,index):
self.input=float(input)
self.output=float(output)
self.delta=float(delta)
for e in index :
self.index.append(float(e))
def changeIndex(self,indice , newval):
self.index[indice]=float(newval)
那么如何在Python中创建一个2d结构?