Python Programming

Solve IndentationError: unindent does not match any outer indentation level

Majority of the time new Python developers face one common problem and that is of IndentationError: unindent does not match any outer indentation level and they are not able to figure out why this error occurred. In this post, I’ll be discussing some of the ways to overcome IndentationError. But before getting started, I’d like to …

Solve IndentationError: unindent does not match any outer indentation level Read More »

Solve Error ‘pip’ is not recognized as an internal or external command

In this tutorial, we are going to see various possible reasons for getting the error ‘pip’ is not recognized as an internal or external command. Before starting with that let us first understand what pip is. Pip is a package manager for python. Basically it is used to install packages, libraries and additional dependencies in …

Solve Error ‘pip’ is not recognized as an internal or external command Read More »

Python String Comparison

In this tutorial we are going to see different methods by which we can compare strings in Python. We will also see some tricky cases when the python string comparison can fail and golden rules to get string comparison always right. Python strings are Immutable.  This means that once you have created a string then …

Python String Comparison Read More »