#python
Read more stories on Hashnode
Articles with this tag
Learn Python Programming & Get hired 👔 Are you someone who would like to learn the Python Programming language, but don’t know where to start? Well,...
Lambda expressions in python are one-time anonymous functions which we don’t need more than once. Consider the following example where we use a...
In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions....
Alright, let’s start with what functions actually are. OK, a function is a piece of code. A function may/may not accept input(s). A function...
The pass statement does nothing. Wow, that’s a bummer! Hmmm…Then, why do we need it? Well, it can be used when a statement is required syntactically...
Did you know that loop statements may have an else clause?Well, it turns out that they can be used! else clause will be executed when the loop...