Re: Problem with following python code

2007-06-11 Thread Dick Moores
At 09:52 PM 6/11/2007, Dan Hipschman wrote: >On Tue, Jun 12, 2007 at 04:25:31AM -, why? wrote: > > I've been having problem with the following code. It's supposed to > > print the prime numbers between 10 and 100. But i'm not getting any > > output, i.e. i guess the outer 'for' loop is being t

Re: Problem with following python code

2007-06-11 Thread Dan Hipschman
On Tue, Jun 12, 2007 at 04:25:31AM -, why? wrote: > I've been having problem with the following code. It's supposed to > print the prime numbers between 10 and 100. But i'm not getting any > output, i.e. i guess the outer 'for' loop is being traversed only > once. I would be greatful if you co

Re: Problem with following python code

2007-06-11 Thread Gabriel Genellina
En Tue, 12 Jun 2007 01:25:31 -0300, why? <[EMAIL PROTECTED]> escribió: > I've been having problem with the following code. It's supposed to > print the prime numbers between 10 and 100. But i'm not getting any > output, i.e. i guess the outer 'for' loop is being traversed only > once. I would be

Re: Problem with following python code

2007-06-11 Thread Tim Leslie
On 6/12/07, why? <[EMAIL PROTECTED]> wrote: > I've been having problem with the following code. It's supposed to > print the prime numbers between 10 and 100. But i'm not getting any > output, i.e. i guess the outer 'for' loop is being traversed only > once. I would be greatful if you could help m

Problem with following python code

2007-06-11 Thread why?
I've been having problem with the following code. It's supposed to print the prime numbers between 10 and 100. But i'm not getting any output, i.e. i guess the outer 'for' loop is being traversed only once. I would be greatful if you could help me out. Thanx! >>> f=1 >>> for i in range(10,100): ..