How to exit from Python command line – Terminal

By Saruque Ahamed Mollick

Hello, I just ran a Python program and I was wondering how can I exit from the command line so that I can type new commands or just simply quit the program. So in this tutorial, I .... Read More

How to read xlsx file with openpyxl in Python

By Yathartha Rana

In this tutorial, you will learn how to read an Excel file using Python using openpyxl. In our day-to-day task of analyzing the data, our data can be in CSV or XLSX format.  The p.... Read More

Fixed: ERROR: Could not build wheels for pyaudio, which is required to install pyproject.toml-based projects

By Saruque Ahamed Mollick

Hello, I was trying to install pyaudio on my new Mac device and I came across this error while installing with pip: ERROR: Could not build wheels for pyaudio, which is required to .... Read More

How to install pip on Mac

By Saruque Ahamed Mollick

In this tutorial, I will show you 2 terminal commands, and using those commands, you can easily install pip on your Mac device. If you have not installed pip properly you may get a.... Read More

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

Related Posts