Aldwin Dave Conahap
2 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...
ayenadykyaw1
5 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...
Aldwin Dave Conahap
3 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....
Sujan Karki
3 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...
Ntandoyenkosi Matshisela
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...
Data Insight
3 min read
Best Online Courses for Data Science
Best Online Learning Platforms for Data Science. Best Courses, Certifications, Websites and Blogs.
Pyae Phyo Kyaw
4 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...
Ajibola Salami
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.
Heba Elwazzan
2 min read
Check if a String Could Be a Palindrome
The purpose of this blog is not to check for palindromes, but to check whether or not a string, if it were arranged in a certain way, co
Tanushree Nepal
3 min read
Python Concepts for Data Science: Python Functions
Function in any programming language is a sequence of statements in a certain order, given a name. When called, those statements are...