Re: [Tutor] a question about indentation

2006-11-24 Thread Danny Yoo
> I'm fairly new to python, and trying to get used to the indentation. I > just encountered my first problem with it. I wrote the following code: > > for ord in f_ord: >if not ordliste.has_key(ord) : >ordliste[ord] = {} >for word in e_ord: >if ordliste[ord].h

Re: [Tutor] a question about indentation

2006-11-24 Thread arildna
Christopher Arndt wrote: > [EMAIL PROTECTED] schrieb: > >> I suppose there is a good way to do indent whole blocks like this, but I >> haven't found out what it is. Could anybody help me out? >> > > Yes, get a good source code editor that has the ability to (de)indent whole > blocks of cod

Re: [Tutor] a question about indentation

2006-11-24 Thread Christopher Arndt
[EMAIL PROTECTED] schrieb: > I suppose there is a good way to do indent whole blocks like this, but I > haven't found out what it is. Could anybody help me out? Yes, get a good source code editor that has the ability to (de)indent whole blocks of code with one keystroke. This is a must-have for w

[Tutor] a question about indentation

2006-11-24 Thread arildna
Hi, I'm fairly new to python, and trying to get used to the indentation. I just encountered my first problem with it. I wrote the following code: for ord in f_ord: if not ordliste.has_key(ord) : ordliste[ord] = {} for word in e_ord: if ordliste[ord