Re: Python "why" questions

2010-08-20 Thread Kai Borgolte
x27;t want to indent a string so it starts at column 4. You simply want to indent the string by four spaces. Like in PEP 8: /Use 4 spaces per indentation level./ >0123456789 >spam And of course your text editor will number the columns beginning with one, so the string starts at co

Re: Python "why" questions

2010-08-20 Thread Kai Borgolte
he string by four spaces. Like in PEP 8: /Use 4 spaces per indentation level./ > 0123456789 >     spam And of course your text editor will number the columns beginning with one, so the string starts at column 5. 123456789     spam -- Kai Borgolte, Bonn -- http://mail.python.org/mailman/listinfo/python-list