2
Well, an IndentationError
means there is an indentation error!
Python is indentation-sensitive. Make sure that:
- All of your code is indented properly. Everything is in it’s proper level.
- You are not mixing spaces and tabs characters to indent. This is where people usually stuck.
Hope this helps!
Source:stackexchange.com