#technology
Read more stories on Hashnode
Articles with this tag
Hashing is a fundamental concept in computer science and plays a crucial role in efficient data storage and retrieval. In this blog post, we will...
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...