Sent Successfully.
Home / Blog / Data Science / Indentation Error: Unindent Does Not Match Any Outer Indentation Level
Indentation Error: Unindent Does Not Match Any Outer Indentation Level
Table of Content
Hello everyone! In this blog post, I'll talk about the “Indentation Error” in the Python programming language, providing a clear explanation, helpful examples, and fixes.
This is where my inspiration for writing this blog stems from. During the break, my content writer and I were talking about our jobs, obstacles, etc. Our chats went like this:
Nikhil: Ooff!!! I am so stressed; I want a strong coffee
Bindu: Oh! What happened to you?
Nikhil: Being a programmer, I am writing a coding from so long time! Worn-out
Bindu: hmm, Is it? but it should not be as stressed as my job
Nikhil: What???
Bindu: Yes, I need to be more focused on content, words, punctuation, and spaces to be taken care but your job is to just write code for the logic right?
Nikhil: No, even in programming there is a structure to write it and here also we need to take care of spaces which are so-called Indentation!
Bindu: Is it?
Nikhil: Yes. If the indentation is not in the right order an error will pop up that’s called “Indentation Error”
Let’s understand What is indentation error in more detail with examples!
What is Indentation?
An indentation is nothing more than blank space between lines of code that describes the organisation and operation of the specified code. The major purpose of the indentations is to denote the subordination of one feature to another. The "Tab" key in the Python programming language will enable us to indent each function with the appropriate amount of spaces.
Click here to learn Data Science Courses in Bangalore
Click here to explore 360DigiTMG.
What is Indentation Error?
We receive an error known as a "Indentation Error" when we don't provide enough spaces to suborder the code structure.
In Python, the error often looks like this:
Indentation Error: No outside indentation level matches unindent.
In Python, this issue typically results from uneven indentation. To create a function or loop, several programming languages employ the operator "." However, Python substitutes indentation (blank spaces) for. Therefore, there shouldn't be any indentation errors. When we copy and paste code, this problem occurs rather frequently.
Let's examine the indentation mistake in more depth using samples from Python:
Let’s understand the Indentation error with Python examples in detail:
Examples:
Example 1:
import sys
def Factorial(n): # Return factorial
result = 1
for i in range (1,n):
result = result * i
print("factorial is ",result)
return result
Factorial(4)
Output:
File "
print("factorial is ",result)
IndentationError: unindent does not match any outer indentation level
# The above error arouses because there is some mismatch that occurred in the indentation.
REMEDY
Please be sure to properly check for any indentation errors. An order should be maintained for all indents. If we look at the aforementioned example, the "print" statement broke the rules about indentation.
Click here to learn Data Science Course in Hyderabad
Solution:
import sys
def Factorial(n): # Return factorial
result = 1
for i in range (1,n):
result = result * i
print("factorial is ",result)
return result
Factorial(4)
Output:
factorial is 6
6
Example 2:
class junk:
"""docstring is indented too much"""
def greet(self):
return 'hello'
s=junk()
s.greet()
Output:
File "
def greet(self):
IndentationError: unindent does not match any outer indentation level.
Hint: As you see, the docstring which is used to describe any object, is not indented properly. This would cause a problem.
REMEDY
The docstring's indentation has to be fixed. By pressing enter after the: in the class declaration, you may correct this. The cursor for the appropriate indentation will automatically appear. As a result, modify the docstring's indentation as necessary.
Solution:
class junk:
"""docstring is indented too much"""
def greet(self):
return 'hello'
s=junk()
s.greet()
Output:
'hello'
Example 3:
for i in range(10):
if i%2==0:
print('even numbers are\n')
print(i)
Output:
File "
print(i)
IndentationError: unindent does not match any outer indentation level.
Hint: In the above example there are unequal blank places(indents) inside the “if block” which is causing the problem.
REMEDY
With indentation, exercise extreme caution. Statements in the try and except block should start off in the same place. The differences will be indicated in red in the Jupiter Notebook. We are able to check and amend them.
Solution:
for i in range(10):
if i%2==0:
print('even numbers are\n')
print(i)
Output:
even numbers are
0
even numbers are
2
even numbers are
4
even numbers are
6
even numbers are
8
Example 4:
import sys
a=5
try:
rec=1/a
print('reciprocal of given number is',rec)
except:
print('reciprocal cannot be found')
print('type of error is',sys.exc_info()[0])
Output:
File "
print('reciprocal of given number is',rec)
IndentationError: unindent does not match any outer indentation level
Hint: As seen in previous examples, the main problem lies with unequal indents. Here “ in try and except blocks” the unequal indentation is causing the problem.
REMEDY
The x [1] +=3 statement is indented here using the 'tab' key, while the return statement is indented using'spaces'. Please be aware that tab and space are not equivalent. So, for the indentation, please use either a tab or a space, not both.
Solution:
import sys
a=5
try:
rec=1/a
print('reciprocal of given number is',rec)
except:
print('reciprocal cannot be found')
print('type of error is',sys.exc_info()[0])
Output:
reciprocal of the given number is 0.2
Example 5:
When we use text editors to write the code, sometimes it is hard to find out the error.
n = [5,55,555]
def myFun(x):
x[1]+= 5 #tab for indentation
return x #space for indentation
print (myFun(n))
Output:
File "
return x #space for indentation
IndentationError: unindent does not match any outer indentation level.
Hint: Here we used Sublime text editor to write the code. When we observed in Sublime, it seems like x[1].. and return is in the same order. But the problem persists.
REMEDIES
Here we are using 'tab' for the indentation of x[1]+=3 statement and 'spaces' to get the indentation of the return statement. Please note that tab and space are not interchangeable. So please use either tab or space for the indentation, not both.
- In Sublime, If we select the code, then we can distinguish tab and space indentations easily OR
- In Sublime toolbar, View - Indentation - Convert Indentation to Spaces OR
- In Sublime toolbar, View - Indentation - Convert Indentation to Tabs
Solution:
n = [5,55,555]
def myFun(x):
x[1]+= 5
return x
print (myFun(n))
Output:
[5, 60, 555]
Click here to learn Data Science Course, Data Science Course in Hyderabad, Data Science Course in Bangalore
Data Science Placement Success Story
Data Science Training Institutes in Other Locations
Agra, Ahmedabad, Amritsar, Anand, Anantapur, Bangalore, Bhopal, Bhubaneswar, Chengalpattu, Chennai, Cochin, Dehradun, Malaysia, Dombivli, Durgapur, Ernakulam, Erode, Gandhinagar, Ghaziabad, Gorakhpur, Gwalior, Hebbal, Hyderabad, Jabalpur, Jalandhar, Jammu, Jamshedpur, Jodhpur, Khammam, Kolhapur, Kothrud, Ludhiana, Madurai, Meerut, Mohali, Moradabad, Noida, Pimpri, Pondicherry, Pune, Rajkot, Ranchi, Rohtak, Roorkee, Rourkela, Shimla, Shimoga, Siliguri, Srinagar, Thane, Thiruvananthapuram, Tiruchchirappalli, Trichur, Udaipur, Yelahanka, Andhra Pradesh, Anna Nagar, Bhilai, Borivali, Calicut, Chandigarh, Chromepet, Coimbatore, Dilsukhnagar, ECIL, Faridabad, Greater Warangal, Guduvanchery, Guntur, Gurgaon, Guwahati, Hoodi, Indore, Jaipur, Kalaburagi, Kanpur, Kharadi, Kochi, Kolkata, Kompally, Lucknow, Mangalore, Mumbai, Mysore, Nagpur, Nashik, Navi Mumbai, Patna, Porur, Raipur, Salem, Surat, Thoraipakkam, Trichy, Uppal, Vadodara, Varanasi, Vijayawada, Vizag, Tirunelveli, Aurangabad
Data Analyst Courses in Other Locations
ECIL, Jaipur, Pune, Gurgaon, Salem, Surat, Agra, Ahmedabad, Amritsar, Anand, Anantapur, Andhra Pradesh, Anna Nagar, Aurangabad, Bhilai, Bhopal, Bhubaneswar, Borivali, Calicut, Cochin, Chengalpattu , Dehradun, Dombivli, Durgapur, Ernakulam, Erode, Gandhinagar, Ghaziabad, Gorakhpur, Guduvanchery, Gwalior, Hebbal, Hoodi , Indore, Jabalpur, Jaipur, Jalandhar, Jammu, Jamshedpur, Jodhpur, Kanpur, Khammam, Kochi, Kolhapur, Kolkata, Kothrud, Ludhiana, Madurai, Mangalore, Meerut, Mohali, Moradabad, Pimpri, Pondicherry, Porur, Rajkot, Ranchi, Rohtak, Roorkee, Rourkela, Shimla, Shimoga, Siliguri, Srinagar, Thoraipakkam , Tiruchirappalli, Tirunelveli, Trichur, Trichy, Udaipur, Vijayawada, Vizag, Warangal, Chennai, Coimbatore, Delhi, Dilsukhnagar, Hyderabad, Kalyan, Nagpur, Noida, Thane, Thiruvananthapuram, Uppal, Kompally, Bangalore, Chandigarh, Chromepet, Faridabad, Guntur, Guwahati, Kharadi, Lucknow, Mumbai, Mysore, Nashik, Navi Mumbai, Patna, Pune, Raipur, Vadodara, Varanasi, Yelahanka
Navigate to Address
360DigiTMG - Data Analytics, Data Science Course Training Hyderabad
2-56/2/19, 3rd floor, Vijaya Towers, near Meridian School, Ayyappa Society Rd, Madhapur, Hyderabad, Telangana 500081
099899 94319