> > for i in range(2): > > print i > <snip>
> > What am I doing wrong? It doesn't matter what kind of indent (tabs, > spaces) or filetypes (DOS/Unix) I use. I ran into the same problem a while back. Try: for i in range(2): \ print i the EOL needs to be escaped for some reason... Pete Pete Meyer Fu Lab BMCB grad student Cornell University