Posts by Riddhi Goyal
Author Biographical Info: Not available
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
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
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
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
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
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
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
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