[Solved] Python Indentation Error [closed]
[ad_1] The problem arises from the fact that python doesn’t like it when you mix tabs and spaces for indentation. Python relies on whitespace a LOT to figure out the levels of indentation, and hence scope. As a result, when you have a line that has two TABs on it, followed by a line with … Read more