Search Results for: numpy

Python Modules vs Python Packages

In this tutorial on Python Modules vs Python Packages, we will be discussing what they are, and understand the differences between the two. Let’s Begin! What is a Python Module? A module in Python is defined as a file containing specific Python statements and definitions. They help in dealing with complex operations in an easier

Python Modules vs Python Packages Read More »

Python catboost module: A Brief Introduction to CatBoost Classifier

Hello learner! In this tutorial, we will be learning about the catboost module and a little more complex concept known as CatboostClassifier. So let’s begin! What is the catboost module? CatBoost module is an open-source library that is fast, scalable, a very high-performance gradient boosting system on decision trees and other Machine Learning tasks. It

Python catboost module: A Brief Introduction to CatBoost Classifier Read More »

Connect Four Game in Python

Before starting off, let us first understand what connect Four game actually is. Connect4 game is also known as Four Up, Plot Four, Find Four, Captain’s Mistress, Four in a Row, Drop Four, and Gravitrips in the Soviet Union. It is a two-player connection board game, in which the players choose a color and then take turns dropping colored discs into a seven-column, six-row

Connect Four Game in Python Read More »

Duck Typing in Python

Duck typing is a variation of Dynamic Programming and uses a form of abductive reasoning for type checking. In this article, we will focus on the main intuition of duck typing and examples of ducking typing in python. What is Duck Typing in Python? – Abductive Reasoning The term duck arguably comes from the popular

Duck Typing in Python Read More »