Re: [Tutor] For Loops and nested loops

2008-08-16 Thread bob gailer
PLEASE REPLY TO THE GROUP NOT JUST ME. Did you miss my request for that (reply-all)? Umesh Singhal wrote: Hi Bob, unfortunately when i pasted in the code it seems to have gone wrong this is how it is at the moment with the correct indentation for the nested loop: code: a=raw_input('please

Re: [Tutor] For Loops and nested loops

2008-08-16 Thread Lie Ryan
On Sat, 2008-08-16 at 18:07 +0200, [EMAIL PROTECTED] wrote: > Message: 1 > Date: Sat, 16 Aug 2008 06:33:42 +0100 > From: Umesh Singhal <[EMAIL PROTECTED]> > Subject: [Tutor] For Loops and nested loops > To: > Message-ID: <[EMAIL PROTECTED]> > Content-Type:

Re: [Tutor] For Loops and nested loops

2008-08-16 Thread Steve Willoughby
On Sat, Aug 16, 2008 at 06:33:42AM +0100, Umesh Singhal wrote: > Hi im still relatively new to python and i am designing a multiplication > table that enables a user to input the size of the times table unfortunately > ive stumbled on the nested loops this is what i have right now: Is this a hom

Re: [Tutor] For Loops and nested loops

2008-08-16 Thread bob gailer
Umesh Singhal wrote: Hi im still relatively new to python and i am designing a multiplication table that enables a user to input the size of the times table unfortunately ive stumbled on the nested loops this is what i have right now: a=raw_input('please enter a number') b=int(a) n=b+1 for ro

[Tutor] For Loops and nested loops

2008-08-16 Thread Umesh Singhal
Hi im still relatively new to python and i am designing a multiplication table that enables a user to input the size of the times table unfortunately ive stumbled on the nested loops this is what i have right now: a=raw_input('please enter a number') b=int(a) n=b+1 for row in range(1, n):