there is always a problem in idle while using 'else'. it gives indentation error. please help
Make sure you use tab to indent the IF and ELSE sections. I am assuming this is Python. You might have to paste your code snippet.
"unindent does not match any outer indentation level" this the t shows always, i have tried in different ways.
it should be like so if <boolean>: <code> else: <code>
>>> x=35 >>> if x==35: print 'true' else: File "<pyshell#3>", line 3 else: ^ IndentationError: unindent does not match any outer indentation level
well, the way you copy-pasted it I can't tell how your indents are written, the >>> is throwing me off.
x=35 if x==35: print 'true' else: File "<pyshell#3>", line 3 else: ^ IndentationError: unindent does not match any outer indentation level
I hope you're not typing this directly into the shell. Open a new window with CTRL+N and type in your program, then run it with F5. If that doesn't work, copy paste that code here so we can see the indentation properly, the >>> from the shell is making it hard to see what you actually typed.
thank you so much. its is very helpful,and it is woking
glad that's all it was :)
Join our real-time social learning platform and learn together with your friends!