How to make a Discord bot in Python

By Monish C

Hello Everyone! In this tutorial, we are going to learn how to make a discord bot in Python. All you need is to have an account in discord. Discord is a communication platform for .... Read More

Getters and Setters in C++

By Karandeep Singh

Hey, guys today we are going to learn about Getters and Setters in C++. Getters are Setters are mostly used with classes. They are used to access and set the values of private memb.... Read More

std::allocator() function in C++

By Rahul Jain

In this tutorial we will study about std::allocator() function in C++. What is Std allocator? Allocators are objects which are responsible for encapsulating(enclose (something) in .... Read More

Solve the celebrity problem using Python

By Siddharth Shankar Debata

In this tutorial, we will learn to solve the celebrity problem using a Python program. Here, we need to find the celebrity among a group of people on the basis of his/her popularit.... Read More

Python | Understanding Style Transfer using CNNs

By Ashutosh Khandelwal

Hello folks! In this article, we are going to see how we can transfer the style of one image to another image. Among the applications of convolutional neural networks (CNN) and vis.... Read More

AutoEncoder implementation in tensorflow 2.0 in Python

By Suchita Sriramka

In this article, I will show you how to implement a simple autoencoder using TensorFlow 2.0. You can always make it a deep autoencoder by just adding more layers. First, we will se.... Read More

Itertools.product() in Python

By Aditya Goyal

In this tutorial, we are gonna learn about itertools.product() in Python. Firstly we are going to discuss Itertools. Itertools is a Python module used to make iterator blocks by va.... Read More

Copy constructor in Java

By Aditya Goyal

In this tutorial, we are gonna learn about copy constructor in Java. Firstly we are gonna know what is a constructor. A constructor is a block of code that is used to initialize an.... Read More

Related Posts