Re: Python fish simulation?

2008-11-10 Thread Mike Driscoll
On Nov 10, 8:39 am, Joe Strout <[EMAIL PROTECTED]> wrote: > Is there any Python-based fish simulation project?  I've tried   > searching google and pypi, but no luck.  No burning need, just seems   > like it'd be fun. > > Thanks, > - Joe Or you could check out the turtle simulation which should gi

Re: Python fish simulation?

2008-11-10 Thread Tim Chase
Is there any Python-based fish simulation project? I've tried searching google and pypi, but no luck. No burning need, just seems like it'd be fun. Without much detail on what you want to simulate... class Fish: LITTLE, HUGE = range(2) def __init__(self, name, size=None): self.name

Python fish simulation?

2008-11-10 Thread Joe Strout
Is there any Python-based fish simulation project? I've tried searching google and pypi, but no luck. No burning need, just seems like it'd be fun. Thanks, - Joe -- http://mail.python.org/mailman/listinfo/python-list