Answers for "ile "<string>", line 2 if n==1: ^ indentationerror: unexpected indent"

2

IndentationError: unexpected indent

# Python uses spacing at the start of the line to determine when code blocks start and end. 
# Errors you can get are:

def a():
...print "foo"
...     print "bar"
IndentationError: unexpected indent

>>>   print "hello"
IndentationError: unexpected indent
Posted by: Guest on January-17-2021

Code answers related to "ile "<string>", line 2 if n==1: ^ indentationerror: unexpected indent"

Python Answers by Framework

Browse Popular Code Answers by Language