Solved: “taberror inconsistent use of tabs and spaces in indentation” in Python
This error mainly occurs when a code is indented using both space and tab. It is always preferred either to use tab or space and not both at the same time. Tab and space are two different things in Python. There is no specific rule for using tab. Python just expects the same number of …
Solved: “taberror inconsistent use of tabs and spaces in indentation” in Python Read More »
