Why will this not compile... I am stumped...
for files in glob.glob("*.txt"):
f=open(files)
for lines in f:
print lines
I get:
File "teleparse.py", line 21
for lines in f:
^
IndentationError: unexpected indent
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
"No, i've made sure that the indentations contain only tabs." You're wrong:
You can use |
|||
|
|
Aside from the potential mixing of tabs and spaces (see PEP 8), why is your second Should be like this (preferably using only spaces):
not
which would be an "unexpected indent" as the error message states. |
|||||||||||
|