Flappy Bird Game in Python

Flappy bird was originally released as a mobile game where you tap the screen to make the bird fly. If the bird hits the pipes or the edges of the screen, the game ends and the player needs to restart. In this tutorial, we have made a computer version of the game where the bird […]

Flappy Bird Game in Python Read More »

Stock Price Prediction using Python

Hello there! Today we are going to learn how to predict stock prices of various categories using the Python programming language. Stock market prediction is the act of trying to determine the future value of company stock or other financial instruments traded on an exchange. The successful prediction of a stock’s future price could yield

Stock Price Prediction using Python Read More »

Python np.argmax() function

NumPy (np) is one of the most popular libraries for mathematical and scientific calculations. It provides a lot of functions to work with multidimensional arrays. In this article, we will focus on Python np.argmax() function. Python np.argmax() function As the name suggests, the argmax() function returns the index of the maximum value in the NumPy

Python np.argmax() function Read More »