I'm using the python interpreter and entered the following code:

>>> for page in range(1,6):
... search_results.append(twitter_search.search(q="#prayforjapan", rpp=100,
page=page))

And received this:
  File "<stdin>", line 2
    search_results.append(twitter_search.search(q="#prayforjapan", rpp=100,
page=page))

IndentationError: expected an indented block

I'm learning python as my first language since coding Basic in 6th grade
(over 30 years ago). I assume that in a text editor I would simply indent
the code.

*My question is how do I fix this in the interpreter? What do I type?*

I'm running python 2.7.1, Mac OS 10.6.6, from the terminal.

Thanks in advance.
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to