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 e
Your for loop has no loop body:
for
elif option == 2: print "please enter a number" for x in range(x, 1, 1): elif option == 0:
Actually, the whole if option == 1: block has indentation problems. elif option == 2: should be at the same level as the if statement.
if option == 1:
elif option == 2:
if