Let me start off by saying that I am COMPLETELY new to programming. I have just recently picked up Python and it has consistently kicked me in the head with one recurring error -- "expected an indented block" Now, I know there are several other threads addressing this problem and I have looked over a good number of them, however, even checking my indentation has not given me better results. I have replaced all of my indents with 4 spaces and even rewritten the code several times. I'll post this counter assignment I got as an example.
option == 1
while option != 0:
print "MENU"
option = input()
print "please make a selection"
print "1. count"
print "0. quit"
if option == 1:
while option != 0:
print "1. count up"
print "2. count down"
print "0. go back"
if option == 1:
print "please enter a number"
for x in range(1, x, 1):
print x
elif option == 2:
print "please enter a number"
for x in range(x, 1, 1):
elif option == 0:
break
else:
print "invalid command"
elif option == 0:
break
in python .....intendation matters, e.g.:
In this case "all the best" will be printed if either of the two conditions executes, but if it would have been like this
then "all the best" will be printed only if a==2
Your
for
loop has no loop body:Actually, the whole
if option == 1:
block has indentation problems.elif option == 2:
should be at the same level as theif
statement.Starting with
elif option == 2:
, you indented one time too many. In a decent text editor, you should be able to highlight these lines and press Shift+Tab to fix the issue.Additionally, there is no statement after
for x in range(x, 1, 1):
. Insert an indentedpass
to do nothing in thefor
loop.Also, in the first line, you wrote
option == 1
.==
tests for equality, but you meant=
( a single equals sign), which assigns the right value to the left name, i.e.The body of the loop is indented: indentation is Python’s way of grouping statements. At the interactive prompt, you have to type a tab or space(s) for each indented line. In practice you will prepare more complicated input for Python with a text editor; all decent text editors have an auto-indent facility. When a compound statement is entered interactively, it must be followed by a blank line to indicate completion (since the parser cannot guess when you have typed the last line). Note that each line within a basic block must be indented by the same amount.
src: ##
##https://docs.python.org/3/tutorial/introduction.html#using-python-as-a-calculator
Your last
for
statement is missing a body.Python expects an indented block to follow the line with the for, or to have content after the colon.
The first style is more common, so it says it expects some indented code to follow it. You have an
elif
at the same indent level.