Re: [Tutor] What techniques should I use to make my code run faster?Informational

2006-08-09 Thread wesley chun
the overall root document of this useful read is: http://jaynes.colorado.edu/PythonGuidelines.html -wesley ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] What techniques should I use to make my code run faster?Informational

2006-08-09 Thread anil maran
r time?... :-)Thanks for posting,Alan G.- Original Message - From: "anil maran" <[EMAIL PROTECTED]>To: Sent: Wednesday, August 09, 2006 11:16 PMSubject: [Tutor] What techniques should I use to make my code run faster?Informational> What techniques should I use to make

Re: [Tutor] What techniques should I use to make my code run faster?Informational

2006-08-09 Thread Alan Gauld
t; <[EMAIL PROTECTED]> To: Sent: Wednesday, August 09, 2006 11:16 PM Subject: [Tutor] What techniques should I use to make my code run faster?Informational > What techniques should I use to make my code run faster? Always profile before you optimize for speed. You should

[Tutor] What techniques should I use to make my code run faster? Informational

2006-08-09 Thread anil maran
What techniques should I use to make my code run faster? Always profile before you optimize for speed. You should always optimize for readability first: it's easier to tune readable code than to read 'optimized' code, especially if the optimizations are not effective. Before usi