All Basic Articles
Assoc is command (internal) found inside Windows Command Processor Command Prompt, that allows for file extension to file type association. A file extension is generally… Read More
The world is currently used to sparing everything without exception in the electronic space. Processing power, RAM speeds and hard-disk sizes have expanded to level… Read More
Given three integers N, X, and Y, the task is to find out the largest positive integer K such that K % X = Y… Read More
1. Traditional data: Traditional data is the structured data that is being majorly maintained by all types of businesses starting from very small to big… Read More
A supply chain is like a network that provides facilities and options like distribution which performs operations like Procurement of material, the transformation of these… Read More
Given a list of tuples. The task is to extract all tuples which have all elements divisible by K. Input : test_list = [(6, 24,… Read More
CMake is a cross-platform free and open-source software tool for managing the build process of software using a compiler-independent method. It supports directory hierarchies and… Read More
VSCode is a Text editor that provides support for development operations and version control systems. It provides tools for a user to build hassle-free codes.… Read More
CRUD stands for Create, Read, Update and Delete Operations. All these Operations can be made Asynchronous using the Async Database Connection. After making  Async Connection… Read More
In this article, we will see about the concept of Truthy and Falsy values in Python and also see how to determine a value is… Read More
DXC Technology Campus Drive was held in the month of July-August 20 (For the batch of 2021 i.e final year students) for the full-time employees… Read More
In this article, we are going to see how to check whether the given string contains only a certain set of characters in Python. These… Read More
Given a list of lists. The task is to extract a random element from it. Examples: Input : test_list = [[4, 5, 5], [2, 7,… Read More
In this article, we are going to write a short script to generate barcodes using Python. We’ll be using the python-barcode module which is a… Read More
Sometimes we need to find the combination of elements of two or more arrays. Numpy has a function to compute the combination of 2 or… Read More
Python offers multiple libraries to ease our work. Here we will learn how to take a screenshot using Python. Python provides a module called pyscreenshot… Read More
Many times there is a need to copy one array to another. Numpy provides the facility to copy array using different methods. In this Copy… Read More
A special number that can be calculated from a square matrix is known as the Determinant of a square matrix. The Numpy provides us the… Read More
Errorbar is the plotted chart that refers to the errors contained in the data frame, which shows the confidence & precision in a set of… Read More
If you have used Python even for a few days now, you probably know about unpacking tuples. Well for starter, you can unpack tuples or… Read More