Rohan Singh has Published 172 Articles

How to use Xpath with BeautifulSoup?

Rohan Singh

Rohan Singh

Updated on 16-Oct-2023 11:19:28

2K+ Views

XPath is a powerful query language used to navigate and extract information from XML and HTML documents. BeautifulSoup is a Python library that provides easy ways to parse and manipulate HTML and XML documents. Combining the capabilities of XPath with BeautifulSoup can greatly enhance your web scraping and data extraction ... Read More

How to use while True in Python?

Rohan Singh

Rohan Singh

Updated on 16-Oct-2023 11:16:32

81 Views

Python programming language provides various constructs to control the flow of execution. One such powerful construct is the 'while True' loop, which allows you to create an infinite loop that continues executing until a certain condition is met. In this article, we will understand how we can use while true ... Read More

How to use Vision API from Google Cloud?

Rohan Singh

Rohan Singh

Updated on 16-Oct-2023 11:14:15

94 Views

Google Cloud Vision API is a powerful cloud-based tool that allows developers to integrate advanced image analysis capabilities into their applications. A lot of images are available in today’s digital age. Vision API is used for extracting meaningful information from these images, such as recognizing objects, detecting text, understanding ... Read More

How to use Variables in Python3?

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 17:04:30

116 Views

Variables are fundamental elements in programming that allow us to store and manipulate data. In Python 3, variables are dynamically typed, meaning they can hold different types of data throughout their lifetime. Understanding how to use variables effectively is crucial for writing robust and flexible code. In this article, we ... Read More

How to use the mouse to scale and rotate an image in PyGame?

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 16:15:34

168 Views

Pygame is a powerful library for creating 2D games and graphical applications in Python. It provides a wide range of functionalities, including the ability to manipulate and transform images. In this article, we will explore how to use the mouse to scale and rotate an image in Pygame. Prerequisites ... Read More

How to use the Live Coding Feature of Python in Eclipse?

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 16:00:47

92 Views

Eclipse, a powerful integrated development environment (IDE), offers a wide range of features to enhance the coding experience. One such feature is live coding, which allows developers to see the real-time output of their code as they type, making the debugging process more efficient. In this article, we will discuss ... Read More

How to use strptime with milliseconds in Python

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 15:58:10

2K+ Views

Working with dates and times is a common task in programming, and Python provides several modules to handle such operations. The datetime module is one of the most commonly used modules for manipulating dates and times. It offers a variety of functions and classes, including the strptime() method, which allows ... Read More

How To Use Seaborn Color Palette to Color Boxplot?

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 15:49:15

132 Views

Seaborn is a popular Python library that provides a high-level interface for creating informative and aesthetically pleasing visualizations. One of the key features of Seaborn is its ability to customize the color palette of plots, allowing users to highlight specific aspects of the data. In this article, we will explore ... Read More

How to Use Pickle to Save and Load Variables in Python?

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 15:33:22

3K+ Views

Pickle is a Python module that is used for data serialization ie. converting data into a byte stream. Pickle allows developers to save and load variables from memory to disk, ensuring data integrity and easy retrieval. In this article, we will explore how to utilize Pickle effectively to save and ... Read More

How to Use Pandas filter with IQR?

Rohan Singh

Rohan Singh

Updated on 13-Oct-2023 15:30:10

706 Views

Pandas is an open-source Python library used for data analysis and manipulation. Pandas provides functionality for data cleaning, transformation, and filtering. In large datasets, some extreme values called outliers can modify the data analysis result. In order to identify those outliers, a robust statistical measure called the Interquartile range (IQR) ... Read More

Advertisements