Single quotes vs double quotes in Python – When to use

By Saruque Ahamed Mollick

In this tutorial, I will describe the actual uses of single quotes and double quotes in Python. This will help you to figure out the difference between single quotes and double quo.... Read More

Python program to print Hello world! – First program

By Saruque Ahamed Mollick

In this tutorial, I will show you how to create your first Python program to print Hello world! Hello world program in Python print('Hello, world!') Output: Hello, world! How to pr.... Read More

Different ways to iterate over rows in Pandas Dataframe

By Arnab Sadhukhan

In this article, we will see how can you iterate over rows in a Pandas data frame using Python. Pandas is a software library used for data analysis and manipulation in Python. Requ.... Read More

Multiple plots with same x axis in Matplotlib Python

By Yathartha Rana

In this tutorial, you will learn how to create multiple plots with the same X-axis using Python. At times, when you have a single parameter (independent variable) and many dependen.... Read More

Create PDF from multiple images in Python

By Yathartha Rana

In this tutorial, we will learn how to create a PDF file from multiple images using our favorite language, Python. At times, you feel the need to convert images into PDF files, and.... Read More

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

Related Posts