[Tutor] How and where to use pass and continue

2005-03-27 Thread Kevin
I am having lot of trouble learning where and when to use pass and continue. The two books that I use don't explian these very good. Is there a website the explains these is great detail? I have also looked at the python tutorial as well. Thanks Kevin

Fwd: [Tutor] How and where to use pass and continue

2005-03-27 Thread Liam Clarke
Oops, forward to list as well. -- Forwarded message -- From: Liam Clarke [EMAIL PROTECTED] Date: Mon, 28 Mar 2005 14:22:00 +1200 Subject: Re: [Tutor] How and where to use pass and continue To: Kevin [EMAIL PROTECTED] Hi Kevin, I generally use pass as a placeholder - if you

Re: [Tutor] How and where to use pass and continue

2005-03-27 Thread Sean Perry
Kevin wrote: I am having lot of trouble learning where and when to use pass and continue. The two books that I use don't explian these very good. Is there a website the explains these is great detail? I have also looked at the python tutorial as well. language idioms are one of the hardest things

Re: [Tutor] How and where to use pass and continue

2005-03-27 Thread Bill Mill
On Sun, 27 Mar 2005 20:37:02 -0500, Kevin [EMAIL PROTECTED] wrote: I am having lot of trouble learning where and when to use pass and continue. The two books that I use don't explian these very good. Is there a website the explains these is great detail? I have also looked at the python

Re: [Tutor] How and where to use pass and continue

2005-03-27 Thread Kevin
That was a great help I understand now what they do and how to use them. Thanks alot for all your help. On Sun, 27 Mar 2005 21:43:45 -0500, Bill Mill [EMAIL PROTECTED] wrote: On Sun, 27 Mar 2005 20:37:02 -0500, Kevin [EMAIL PROTECTED] wrote: I am having lot of trouble learning where and when

Re: [Tutor] How and where to use pass and continue

2005-03-27 Thread Kevin
Ok I have another question now I noticed that at the tope of a while loop there will be somthing like this: test = None while test != enter: test = raw_input(Type a word: ) if test == enter: break what is the purpose of test = None ? Thanks Kevin On Sun, 27 Mar

Re: [Tutor] How and where to use pass and continue

2005-03-27 Thread Kent Johnson
Kevin wrote: Ok I have another question now I noticed that at the tope of a while loop there will be somthing like this: test = None while test != enter: test = raw_input(Type a word: ) if test == enter: break what is the purpose of test = None ? Otherwise you will