Re: Processing in Python

2008-05-21 Thread Salvatore DI DI0
Thanks all of you Regards Salvatore -- http://mail.python.org/mailman/listinfo/python-list

Re: Processing in Python

2008-05-21 Thread Salvatore DI DI0
> He meant it has been re-implemented in Javascript: Indeed :-) There is a jython based NodeBox that runs on windows that can be found > here: > > http://research.nodebox.net/index.php/NodeBoxDev > Thank you -- http://mail.python.org/mailman/listinfo/python-list

Processing in Python

2008-05-20 Thread Salvatore DI DI0
Hello, The Processing Graphics language has been implemented in Javascript. Does anybody tried to make this in Python ? Regards Salvatore http://processing.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Compress a string

2008-05-18 Thread Salvatore DI DI0
Try this t = set("bbc") list(t) Regards Salvatore "Matt Porter" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Hi guys, > > I'm trying to compress a string. > E.g: > "BBBC" -> "ABC" > > The code I have so far feels like it could be ma