Using getchar_unlocked() function in C/C++

By Avinash Bhargav Kompalli

In this tutorial let us learn what is the getchar_unlocked function, how to use this function using C/C++, and what are its advantages. Before going into the topic, let us see some.... Read More

Download datasets into Google Drive using Google Colab – Python

By Avinash Bhargav Kompalli

Before learning how to download datasets into Google Drive using Google Colab lets see what Google Colaboratory is. Google Colaboratory: Google Colaboratory is commonly known as Go.... Read More

Python program to find the Nth Decagonal Number

By Abinash Reddy

In this article, we will learn how to find the nth Decagonal Number in Python. But first, let’s learn a few points about Decagonal Numbers. formula of decagonal numbers D(n) .... Read More

Python Program to Merge Excel Cells using openpyxl

By Abinash Reddy

In this article, we will discuss how to merge cells in an excel sheet using Python. We will use openpyxl module for merging cells. Installation of openpyxl using pip pip install op.... Read More

Jump Statements in Python

By Aarushi Dwivedi

In this article, we will learn about the jump statements in Python using examples. Jump statement has 3 types: Break Continue Pass Break Statement in Python In a loop, if break sta.... Read More

How to download files from the internet using C++

By Sanam Sahoo

Hello, Coders! In this tutorial, we will learn to download files from the internet using C++. Win32 API UrlBlockingStream Let’s have a look at the Win32 API UrlBlockingStream.... Read More

Purpose of self in Python

By Aarushi Dwivedi

In this article, we will learn about self in depth. While using Python, there is no escaping the use of self. The most common misunderstanding with the word is that it is commonly .... Read More

Inserting an element in an array at a specific position in JavaScript

By Himaja Battina

In this tutorial, we will understand how to insert an element at any index in an array in JavaScript. Firstly, let us see about Arrays in JavaScript. In JavaScript Arrays are heter.... Read More

Related Posts