Python
Netflix Data Analysis Project using Python
Netflix is one of the most popular streaming services in the world, with a massive subscriber base. In this article...
Read More โSpotify Data Analysis Project using Python
Data analysis is an important field in business, research and many other areas. Among the many uses of this data,...
Read More โDifference between Static and Class method in Python
Object oriented programming is a programming paradigm that relies on the concept of objects. These objects can have properties and...
Read More โDifferent uses of underscore in Python
1 โ Using in interpreter When you execute the expression in the python interpreter it will store the result of...
Read More โUse of assert statement in Python
Syntax: Assert condition [Error Message] Example 1: assert statement without error message Example 2: assert statement with error message Example...
Read More โDifference between iterables and iterators in Python
Iterables Iterators Iterators can be iterable because both iterator and iterable can be iterated using for loop but iterable objects...
Read More โDecorators and Generators in Python
Python implementation Generators Python generators are functions that are similar to normal functions, but use yield statements instead of return...
Read More โAbstraction in Python
Abstract Class Why Abstraction is Important? In Python, a person usually abstracts data/classes to hide the irrelevant information. This helps...
Read More โOOPs in Python
Object-oriented programming (OOP) is a programming paradigm based on the concept of objects which contains data or attributes and code...
Read More โPython functions, Parameters, Arguments, args and kwargs
Python functions A function is a construct that helps us perform some action using a block of code (the body...
Read More โList comprehensions, break-continue, exception handling in Python
As we have learned for loop to walk through a sequence, and do something with each item, at least read...
Read More โTop 40 Data Science Interview Questions and Answers
1 โ What is F1 score? F1 score is a measure of the accuracy of a model. It is defined...
Read More โ