Re: Dynamic or not?

2007-12-13 Thread rishiyoor
On Dec 13, 10:24 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: > On Thu, 13 Dec 2007 06:51:23 -0800, rishiyoor wrote: > > When you say python automatically allocates memory, what would you do > > if you don't know the size of the list of, say for ex

Re: Dynamic or not?

2007-12-13 Thread rishiyoor
On Dec 12, 11:33 pm, Steven D'Aprano <[EMAIL PROTECTED] cybersource.com.au> wrote: > On Wed, 12 Dec 2007 19:18:20 -0800, rishiyoor wrote: > > I'm trying to write a program that will find the distance between two > > groups of points in space, which have cartesian

Dynamic or not?

2007-12-12 Thread rishiyoor
I'm trying to write a program that will find the distance between two groups of points in space, which have cartesian co-ordinates X,Y and Z. I need to find the distances between each point in one group and every point in the other group. So if group 1 has 6 points and group 2 had 8 points, I will

Re: Coding Help

2007-11-10 Thread rishiyoor
On Nov 10, 3:20 pm, Carsten Haese <[EMAIL PROTECTED]> wrote: > > Maybe it would help you if you added an S6 that does nothing underneath > the "C2 is true" branch of your flow chart. > > -- > Carsten Haesehttp://informixdb.sourceforge.net Think I found a sequence of statements that would work if

Re: Coding Help

2007-11-10 Thread rishiyoor
Well, its not homework, and if you don't want to be a tutor, you can be a consultant and earn a lot of money. Here is how I thought of solving this, but it does not work: While C0 is false if C1 if C2 now what? -- http://mail.python.org/mailman/listinfo/python-list

Coding Help

2007-11-10 Thread rishiyoor
I need help coding my flowchart. The C's are conditions, the S's are statements. The statements do not affect the conditions except for S5 which is an increment for C0. The left is True, and the right is False. I would probably use a while loop (or for loop without S5) for the first condition C0,