Posts from Python

How to set and get cookies in Django

By Yathartha Rana

In this tutorial, we will learn how to set and get cookies in Django. Cookies are small pieces of data stored in user’s web browser by the website and they serve various purp.... Read More

How to use AdminLTE in Django

By Yathartha Rana

In this tutorial, we will learn how to use AdminLTE in Django, which is an Opensource Bootstrap library. AdminLTE After setting up your django, (creating and registering the app) l.... Read More

Image upload with preview in Django

By Yathartha Rana

In this tutorial, we will work on Django framework and will learn how to upload the image to Django and preview it. Django is a Python web framework that helps us in developing web.... Read More

Calculate Residuals in Regression Analysis in Python

By Yathartha Rana

In this tutorial, we will learn about the calculation of residuals in regression analysis, an important part in any Regression analysis. Residuals The residuals basically refer to .... Read More

How to Set Colors for Bar Plot in Matplotlib – Python

By Arnab Sadhukhan

In this tutorial, we will see how to set colors for Bar Plot in Python using Matplotlib. It provides a wide range of plotting functions and tools for creating figures, plots, histo.... Read More

Fetch Anime poster from AniList API using Python

By Arnab Sadhukhan

In this tutorial, we are going to fetch cover pictures of Anime shows using Python by requesting data using AniList API. API can be used to communicate between different software .... Read More

Hypergeometric distribution in Python

By Yathartha Rana

In this tutorial, we will learn about another probability distribution in our statistics referred as Hypergeometric distribution in Python. First we will see the mathematical theor.... Read More

Export a Pandas DataFrame to Excel in Python

By Yathartha Rana

In this tutorial, we will learn how to export the Pandas dataframe into excel format using Python. .to_excel() function The pandas library provides the in-built function named .to_.... Read More

Related Posts