
Python Concepts for Data Science: List Comprehension
Thorough dive into list comprehension in python, with examples.
Gilbert Temgoua
6 min read


Python Functions
Functions are a group of statements which is used to perform a task.These tasks can repetitive , big task which is divided in smaller...
Rohit Roy
2 min read

Creating Data Structures using Python Lists
Introduction Python allows us to create our own Data Structures enabling us to have full control over their functionality. The most...
Omar Mohamed
4 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...
Nargiz Huseynova
2 min read


Python Concepts for Data Science: *args and **kwargs
General introduction In this article we will be interested in the use of *args and **kwargs. But first we will try to know what it...
Kouamé Maïzan Alain Serge Kossonou
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...
Muhammad Hassan Shafiq
3 min read
Exception-handling in Python
Have you encountered an error in the middle of the program runtime? Is the user input inputted incorrect data type as required? Does this...
Aldwin Dave Conahap
2 min read
Python Concepts for Data Science: Functions
In programming, as we start to solve more complex programs we start to notice we often have to repeat the same set of steps in many...
Caleb Atiemo - Keseku
3 min read
Python Concepts for Data Science: List Comprehension
Python List Comprehension Python is popular for its simple, elegant and easy-to-write style of writing and it is as simple as writing a...
ayenadykyaw1
5 min read
Functions in Python
Imagine a refrigerator without compartments. Suppose it’s almost full, unarranged, and foods and beverages are on top of each other....
Aldwin Dave Conahap
3 min read

Lists in Python
A list is an ordered and mutable Python container; ordered means that it takes order in consideration and first element is indexed as 0...
Omar Mohamed
5 min read

Python Concepts for Data Science: Lambda Functions
Functions are a handy tool whenever we want to perform a repetitive task. It helps us by preventing to write the same section of codes...
Sujan Karki
3 min read

A Survey of Python Loops
Imagine repeating any task in writing, speaking or calculating over and over again. The task will end up becoming daunting. Think of an...
Ntandoyenkosi Matshisela
3 min read


Best Online Courses for Data Science
Best Online Learning Platforms for Data Science. Best Courses, Certifications, Websites and Blogs.
Data Insight
3 min read
Python Concepts for Data Science: The Eval and Exec Functions
Python's input function produces a string from the user's keyboard input. If we wish to treat that input as a number, we can use the int...
Pyae Phyo Kyaw
2 min read
Python Concepts for Data Science: Positional and Keyword Arguments
When we are talking about functions, there are two parts - Function definition - The definition of a function contains the code that...
Pyae Phyo Kyaw
4 min read
Python Concepts for Data Science: Iterators
In this blog, we will talk about iterator which is an object used to iterate over an iterable object. Before moving to examples let's...
abdelrahman.shaban7000
2 min read
Classes in Python
In Object-oriented Programming, classes are written, and based on these classes, objects are created. When creating objects based on...
Thiha Naung
2 min read


Recursion
Let's imagine you are standing in a long queue waiting to buy ice cream. How do you know the number of people before you without getting...
Thiha Naung
4 min read

9 Ways to Embed Code Snippets on your Data Science Blog Posts
This article highlights 9 tools that can be used for sharing code snippets for data science blog posts.
Ajibola Salami
4 min read


Simple Tic-Tac-Toe Game
Introduction: Each of us has played this game at least once in our lives. But wait, what do you think about coding this game? The game is...
Ibrahim Rustemov
1 min read


Email Splitter App for Separating Username from Domain Name
Introduction: Mail has become an integral part of our daily lives. But how do these email addresses work, and what sequence do the...
Ibrahim Rustemov
1 min read

Armstrong Number Checker App
Introduction: What is an Armstrong number? Let's first answer this question. Let's say an integer has length n, and if we get the number...
kanan.mahammadli
2 min read

Roman Number to Decimal Converter App
Introduction: Besides the Arabic numerals, integers can be expressed as Roman numbers. Here are the seven main Roman numbers: However,...
kanan.mahammadli
2 min read