
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 26504 Articles for Server Side Programming

1K+ Views
Data may be extracted from websites using the useful method known as web scraping and a popular Python package for web scraping is BeautifulSoup which offers a simple method for parsing HTML and XML documents, enabling us to extract certain data from web sites. Finding the siblings of a tag is a frequent task while scraping web pages and it can be defined as a tag's siblings are any additional tags that have the same parent as the primary tag. We will go through using BeautifulSoup to locate tags' siblings in this blog article. Installation and Setup To use ... Read More

4K+ Views
Finding the roots of polynomials is an essential operation in mathematics, and NumPy provides an easy and efficient way to accomplish this task. NumPy is a powerful library for scientific computing in Python, and its functions for polynomial manipulation are especially useful. Syntax The NumPy library has a function named roots() that can be used to find the roots of a polynomial. numpy.roots(p) where p is the polynomial coefficients represented as a 1D array or sequence. The function returns an array of the roots of the polynomial. Algorithm With NumPy, finding a polynomial's roots is a rather straightforward process ... Read More

470 Views
Profit and loss percent is an important financial metric that helps in analyzing the profitability of a business. It is calculated by finding the difference between the total revenue and total cost, and then dividing that value by the total cost. In this technical blog, we will learn how to find the profit and loss percent in a given Excel sheet using Pandas. We will be using the same Excel sheet that we used in our previous blog post on finding profit and loss. Algorithm Import the Pandas library and read the Excel sheet using the read_excel() function. Apply ... Read More

572 Views
Pandas is a popular data manipulation and analysis library in Python that is widely used by data scientists and analysts. It provides several functions for working with data in Excel sheets. One of the most common tasks in analyzing financial data is finding the profit and loss in a given Excel sheet. Setup To handle excel files in Python using Python, you need to install the openpyxl dependency. To do this, open your terminal and type the command − pip install openpyxl After successful installation you can proceed with experimenting with Excel files and spreadsheets. To download the Excel ... Read More

169 Views
Programmers frequently need to locate a number that is a multiple of another number. We have a number of methods available to us in Python to complete this task. This article will examine various approaches to locating a number that is a multiple of a given integer. The use of a for loop, list comprehension, and the filter function are a few of the methods we'll go through and these techniques can be used in a variety of situations when locating the position of a multiple is required. Algorithm Define a list of numbers Iterate through the list and ... Read More

885 Views
HandCalcs is a Python module for automatic Latex report generation from Python code with minimal coding effort. HandCalcs uses Python's symbolic math library to track calculation history and translate it into LaTeX code. It can be used to automatically generate mathematical equations in LaTeX format. This module is a must-have tool for any Python developer who frequently uses LaTeX for technical documentation. Syntax To install HandCalcs, use the following command in the terminal or command prompt − !pip install handcalcs To use HandCalcs in your Python code, first import the handcalcs.render function. This function is used to create a ... Read More

3K+ Views
The file type HDF5 (Hierarchical Data Format 5) is frequently used for storing and handling huge and intricate data sets. It is the perfect option for scientific and industrial uses because it is made to be versatile, scalable, and effective. Python is one of the many programming languages that can be used to generate, read, and modify HDF5 files. We will look at working with HDF5 files in Python in this tutorial. Installation and Setup We need to install the "h5py" package. We can install it using pip, the package installer for Python. pip install h5py Syntax To create ... Read More

1K+ Views
Python, a generally adaptable and effective programming language, has picked up significant popularity over a long time. The item-oriented nature of Python lets within the execution of a few high-quality capacities, such as inheritance and polymorphism. In this post, we will delve into two lesser-recognized, yet charming techniques that allow for custom-designed inheritance checks in Python: subclasscheck and subclasshook. What are Subclasscheck and Subclasshook? In Python, it is not unusual to determine if a class is a subclass of some other class by utilizing the built-in issubclass() function. By default, this function checks the inheritance tree to decide the connection ... Read More

233 Views
Python, a versatile and broadly used programming language, is thought for its simplicity and widespread feature set. One of its lesser-regarded but powerful capabilities is the brand-new technique, which offers builders a unique way of customizing item introduction. This article presents a complete and engaging review of the new approach in Python, discussing its purpose, use instances and quality practices. Section 1: The Essence of New 1.1: Understanding New In Python, new is a special method that belongs to elegance rather than the example of a category. It is chargeable for creating and returning new times of the class. The ... Read More

3K+ Views
In Python __init_subclass__ method is a special method that allows us to initialize or customization of class creation particularly for subclasses. Key Characteristics of __init_subclass__ Some of the Key aspects of '__init_subclass__' method are as follows Automatic Invocation: The __init_subclass__ method is automatically called during the creation of a subclass and no need to manually invoke this method. Customizable via Parameters: To pass additional information or configuration options ... Read More