| View previous topic :: View next topic |
| Author |
Message |
Kopilman
Joined: 25 May 2006 Posts: 162
|
Unindent does not match any outer indentation level ? it means what ?
I'm getting error and i can't spot it lol |
| |
|
|
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
all lines in a (function, class, method, if-block, for-block, while-block, try-block) need to be indented the same level
Kopilman, and avoid tabs. use spaces instead because the python interpreter considers a tab to be 8 spaces, and a lot of editors consider it to be 4 |
| |
|
|
Kopilman
Joined: 25 May 2006 Posts: 162
|
| Same level = same amount of "space" ? |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
| Kopilman, yes |
| |
|
|
Kopilman
Joined: 25 May 2006 Posts: 162
|
I just fixed the problem by adding 1 space to each if
Nice |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
| Python is definitely space-sensitive |
| |
|
|
Kopilman
Joined: 25 May 2006 Posts: 162
|
| Lol |
| |
|
|
froomzer
Joined: 23 May 2006 Posts: 148
|
| It bites you in the ass when you have mixed spaces and tabs, and open it with a different editor |
| |
|
|
|