Posts by Riddhi Goyal

Author Biographical Info: Not available

How to create a Python count down from 100

By Riddhi Goyal

In this tutorial, we will learn about how to create a Python count down from 100. Simple and easy code: import time count = 100 while count > 0 : print(count) count=count-1 time.... Read More

Get all the heading tags from a web page using BeautifulSoup

By Riddhi Goyal

In this tutorial, we will learn how to get all the heading tags from a web page using BeautifulSoup. You should have the basic knowledge of how to import requests to load the webpa.... Read More

Change the tick frequency on the x or y axis in Matplotlib – Python

By Riddhi Goyal

In this tutorial, we will learn about how to change the tick frequency on the x or y axis in Matplotlib – Python. You should know how to create a basic plot in Matplotlib. Yo.... Read More

How to change tag names and attributes in HTML document using BeautifulSoup

By Riddhi Goyal

Here, we will learn how to change tag names and attributes in HTML document using BeautifulSoup Suppose there is a file named ws.html as follows: <!DOCTYPE html> <html>.... Read More

How to append values to excel sheet using Openpyxl

By Riddhi Goyal

Hello coders!! Here, we will learn how to append values to an excel sheet using openpyxl. To do this, we first need to import Workbook from openpyxl as follows: import openpyxl fro.... Read More

Change font color of excel cells using Openpyxl in Python

By Riddhi Goyal

Here, we will learn how to change the font color of excel cells using Openpyxl in Python. To do this, we first need to import Font and Workbook from openpyxl as follows: import ope.... Read More

Extract only HTML body texts using beautifulsoup in Python

By Riddhi Goyal

Here, we will learn how to extract only HTML body texts using beautifulsoup in Python. First, you should import requests and beautifulsoup. We are importing requests to load the we.... Read More

Generate Reports Using Pandas Profiling in Python

By Riddhi Goyal

Here, we will learn how to generate reports using Pandas Profiling in Python. Basics you need to know: Open the terminal and install pandas_profiling using pip. Write the following.... Read More

Related Posts