How to make a simple game using HTML

By Abhilash Khuntia

Hello! In this tutorial, I going to teach how to make a simple game using HTML, JavaScript, and CSS. Here we are going to make a simple 8-bit Snake Game. The important point is tha.... Read More

Python: How to create tensors with known values

By Aditya Goyal

In this tutorial, we are going to discuss creating tensors with known values using Python. So, at first, we are gonna know about tensors. In different programs, we declare the vari.... Read More

Explain KNearestNeighbours in Machine Learing in Python with examples

By Vineet Raj

In this article, we will learn together the overview of the K-Nearest Neighbors (KNN) algorithm and understand the step by step implementation using KNearest Neighbors(KNN) algorit.... Read More

Display various Datetime formats using Python

By Anish

In this tutorial, we will see how to display various datetime formats in Python using simple methods. Datetime library in Python As the name suggests, the datetime formats in Pytho.... Read More

Break a list into chunks of size N in Python

By Anish

In this article, we will learn how to break a list into chunks of any given size N in Python, with the help of a few simple examples. A list is a collection of objects such as inte.... Read More

Different Data Augmentation techniques in Python

By Anish

In this tutorial, we are going to see the different data augmentation techniques in Python, with the help of a simple example. imgaug in Python Data augmentation is a process, wher.... Read More

Downloading YouTube video using Python to a certain directory

By Anish

In this tutorial, using Python, we will see how you can download a video from YouTube and store it in any directory of your choice. Pytube library in Python to download Youtube vid.... Read More

Usage of if __name__ == ‘__main__’ in Python

By Mohit Tripathi

Hello friends, In this segment, we are going to discussĀ if_name_== ‘_main_’. In this segment, I will tell you how to use if_name_== ‘_main_’ in your file a.... Read More

Related Posts