Workshop 2008, June 16th-20th
The 2nd Annual CompuCell3D workshop welcomes all participants. We will post all presentation slides, videos, and exercises as the workshop progresses. Please feel free to contact us if you have additional questions and/or comments.
Presentation Slides
Introduction to CompuCell Download
Introduction to Python Download
Python Programming in CompuCell Download
C++ Programming in CompuCell Download
Excercise Files
Just the syntax:
self.f = open('workfile', 'w') self.f.write("CELL ID= %s CELL TYPE= %s volume= %s\n"%(cell.id,cell.type,cell.volume)) self.f.close()
Note: 'w' writes to a file 'a' or 'a+' appends to a file