News retrieval using Inshorts API in Python

By Harshal Patel

In this tutorial, we are going to retrieve news from all over the globe. To do this we are going to use the Inshorts API. Our script will fetch us all news of the hot and trendy st.... Read More

How to determine input shape in Keras TensorFlow

By Mir Shaharayan Ali Khan

Hey coders, In this tutorial, we will learn how to determine the input shapes that the Keras and TensorFlow accepts as their input for training a neural network model. We will firs.... Read More

Web Scraping using lxml in Python

By Aryaman Kakad

In this tutorial, we will be performing web scraping using lxml in Python. Web Scraping is the process of scraping or retrieving information/data from different websites. Most of t.... Read More

Convert a Singly Linked List to an Array in C++

By Manan Gupta

The task is to convert a Singly Linked List to an Array in C++. A simple example to explain the task can be- input: 10->20->50->40->35->NULL output: 10 20 50 40 35 T.... Read More

Newspaper article scraping and curation in Python

By Aryaman Kakad

In this tutorial, we will learn newspaper article scraping and curation in Python. We will be using the newspaper3k module which is used for extracting articles from newspapers. Be.... Read More

Scraping and Finding Ordered words in a dictionary in Python

By Aryaman Kakad

In this tutorial, we will learn the scraping and finding ordered words in a dictionary in Python. An ordered word is a word in which the alphabets in the word appear in the alphabe.... Read More

How to modify equal tuple rows in Python

By Aryaman Kakad

In this tutorial, we will learn how to modify equal tuple rows in Python. Whenever we work with data in Python, we sometimes need to modify equal tuple rows data based on the equal.... Read More

Create a single colored blank image in C++ using OpenCV

By Nishant Saxena

We are going to see how to create an image and assign it any single color value in C++ using OpenCV. OpenCV is an open-source C++ library for Image processing and computer vision. .... Read More

Related Posts