How To Identify Indentation Error In Python File The Native Way
Most of us have encountered below error while executing Python script: The problem is also pretty well known. Python prefers spaces over tabs. And your code editor might be configured to add tab for indentation. If you modify a Python script, then you might get a mix of space & tab in the script. Python … Read more