If-Else in Python: Explained with Examples!

In this article let’s see how to write if-else statements in Python. All programming languages have a way of writing if-else statements, which is just a way of making a decision on what to do next! If it rains, open the umbrella! embeddedinventor.com Here the decision of “whether or not to open the umbrella” is … Read more

RuntimeError in Python: Everything You Need to Know!

In this article, let us get ourselves up to speed on the RuntimeError exception in Python. In particular, we will try to answer the following questions. A good grasp of all the built-in exceptions in Python is crucial for anyone serious about becoming a Python Craftsman. This article is all about learning about Runtime Exceptions. … Read more

SyntaxError: A Step By Step Troubleshooting Guide!

In this article, let us learn what causes SyntaxError and see how we can fix that and get our code up and running again! Troubleshooting any errors will include the following steps Let us start by understanding the SyntaxError and its causes! Understanding SyntaxError & Its Root Cause What is Syntax? The word syntax means “a collection of rules to structure … Read more

ValueError: A Step By Step Troubleshooting Guide!

In this article, let us learn what causes ValueError and see how we can fix that to get our code up and running again! Troubleshooting any errors will include the following steps Let us start by understanding ValueError and its causes! Understanding ValueError & Its Root Cause Instead of starting off with a definition, let’s take a look at an … Read more