Weather script using OpenWeatherMap in Python with GUI

By Snigdha Ranjith

In this post, we will learn how to create a weather script using Python. We will use the Python OpenWeatherMap API (PyOWM) to get the weather details. At the end of the post, you w.... Read More

How to check if given array is Monotonic or not in Python

By Ranjeet Keshri

In this tutorial, we will learn how to check if a given array is monotonic or not in Python. We can check either it is monotonic or not if it is monotonic check it is monotonic inc.... Read More

Multiplication of Diagonal Elements of a Matrix in C++

By Paaritosh Sujit

In this tutorial, we will learn how to find the product of diagonal elements of a matrix in C++. A matrix is known as a two-dimensional array/vector.  It is represented in the for.... Read More

Methods to combine multiple dictionaries in Python

By Shriprakash Tiwari

In this tutorial, you will learn multiple methods to combine multiple dictionaries in one dictionary in Python. As we know that in dictionaries we have “Keys” and ̶.... Read More

Predicting Stock price using LSTM in Python

By Infant Raju

Hello everyone, In this tutorial, we are going to see how to predict the stock price in Python using LSTM with scikit-learn of a particular company, I think it sounds more interest.... Read More

Find the most frequent element in NumPy array in Python

By Shriprakash Tiwari

In this tutorial, we will learn how to find the most frequent elements in the NumPy array in Python. There are various ways to find the most frequent elements in Python. We will le.... Read More

Find the second highest number in an integer array in C++

By Yash Shakya

This program is able to find the second highest number in an integer array in C++ by using some suitable conditions. This is a question based on array and it utilizes conditional s.... Read More

How to fetch a random line from a text file in C++

By Ranjeet V

In this tutorial, we are going to learn how to fetch a random line from a text file in C++. This is very easy to do. We have to find a random number using rand() function and get a.... Read More

Related Posts