[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] Quick question from newbie



On 11/3/07, David Muffley <sunami.2600@xxxxxxxxx> wrote:
If I recall correctly, the syntax
if 1 <= i <= 9
runs slower than the syntax
if i <= 9 and i >= 1
Somewhere around 10% slower.  If you use psyco, it goes about 40% slower!
Do you know why?
Ian