Wiki
Python
Aide
edit SideBar
>>> from marshal import dump >>> dd=open('toto.txt','wb') >>> dump(list(self.getMatrice().flat),dd) >>> dd.close()
>>> from marshal import load >>> dd=open('toto.txt','rb') >>> mm=load(dd)