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
There are several issues:
elif option == 2:
and the subsequentelif
-else
should be aligned with the secondif option == 1
, not with thefor
.The
for x in range(x, 1, 1):
is missing a body.Since "option 1 (count)" requires a second input, you need to call
input()
for the second time. However, for sanity's sake I urge you to store the result in a second variable rather than repurposingoption
.The comparison in the first line of your code is probably meant to be an assignment.
You'll discover more issues once you're able to run your code (you'll need a couple more
input()
calls, one of therange()
calls will need attention etc).Lastly, please don't use the same variable as the loop variable and as part of the initial/terminal condition, as in:
It may work, but it is very confusing to read. Give the loop variable a different name:
This one is wrong at least: