Magdy Ahmed
3 min read
What is Python's Map Function?
Python map() applies a function on all the items of an iterable given as input. An iterable, for example, can be a list, a tuple, a set,...
Magdy Ahmed
2 min read
List Comprehensions Simply Explained
List comprehensions are one of the easiest and most efficient ways to create lists in Python. But first what does the term...
Ibrahim M. A. Nasser
4 min read
Understanding *args and **kwargs in python
In this blog post, we will dive into some details about the functions and arguments in Python. Understand Basic Functions In order to...
rubayat tithi
2 min read
Use Cases of the Python Lambda Function
Python is an object-oriented programming language. Like all other programming languages such as C, C++, Dart, and even Java has a lambda...
Gilbert Temgoua
4 min read
Python Concepts for Data Science: Generators
Python generators, syntax, examples, pros and cons.
Sujan Karki
2 min read
Indexing and Slicing in Python
Indexing and slicing is the one of the most commonly used concept in Python. It helps retrieving elements from strings, lists and other...
Rubash Mali
3 min read
A Quick Introduction to Lists in Python
Lists in python are mutable ordered sequence datatype. They are heterogenous i.e. each item in the list doesn't need to be of the same...
Gilbert Temgoua
6 min read
Python Concepts for Data Science: List Comprehension
Thorough dive into list comprehension in python, with examples.
Nargiz Huseynova
2 min read
Lambda Expressions in Python
Anonymous functions in Python are functions that are defined without a name. Anonymous functions can accept multiple inputs and return...
Muhammad Hassan Shafiq
3 min read
Python - Functions
What are Functions? Functions are a convenient way to divide your code into useful blocks, allowing us to order our code, make it more...