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

4 Places To Use Lambda Functions in Python!

This article is focused on the specific use cases in which lambda functions are typically used in Python. I remember the time when I first came across Lambda functions, though the syntax was easy to follow, what intrigued me was where in my code to actually employ these awesome guys, this article is all about … Read more

Lambda Functions in Python: Explained Using 4 Examples!

In this article, we’ll be learning about lambda functions with the help of 4 specifically chosen examples! For those of you in a hurry, here is the short version of the answer! Lambda Functions in a Nutshell Lambda functions are small anonymous functions. They are defined using the word lambda. Lambda functions can take in … Read more

Python return Multiple Values

In this article let us learn how to return more than one value from functions in Python. As programmers, we often come across situations where we need to return multiple values from functions. Python provides us several ways to do this (Yes! More than one way!) and expects “us”, the programmers, to choose one that … Read more

Functions in Python: Explained Using Examples!

This article is focused on readers who are at the very beginning of their programming journey, aimed at helping them to master the concept of functions! The very first time I heard about “functions”, I felt so lost and everything sounded like a bunch of gibberish to me. Until the point when I understood the … Read more

“def” in Python: Explained Using Examples!

In this article, let us learn about the “def” keyword in Python with the help of some examples. The very fact that you have googled and found this article shows that you are a keen learner who thinks differently! Keep it up and I am sure you will become a master craftsman in the world … Read more