I start learning about python, so i read the tutorial:
they show this:
>>> x = int(raw_input("Please enter an integer: "))
Please enter an integer: 42
>>> if x < 0:
... x = 0
... print 'Negative changed to zero'
... elif x == 0:
... print 'Zero'
... elif x == 1:
... print 'Single'
... else:
... print 'More'
...
but i dont know how to get the elif indent!!!
can anyone help me? I use python 2.6 GUI.
bissically when I press the tab button, it indents to the print statement, but not where I can put elif. TY