All Easy Articles
The with keyword in Python is used as a context manager. As in any programming language, the usage of resources like file operations or database… Read More
In this article, we are going to see != (Not equal) operators. In Python,  != is defined as not equal to operator. It returns True… Read More
In this article, we are going to see how to build a web scraping bot in Python. Web Scraping is a process of extracting data… Read More
In this article, we will learn how we can replace text in a file using python. Method 1: Searching and replacing text without using any… Read More
Sometimes we listen to a song on YouTube music, and we really found that song interesting, and you want to add that to your Spotify… Read More
In this article, we are going to see how to set Virtual Environment in Jupyter. Sometimes we want to use the Jupyter notebook in a… Read More
In this article, we are going to see how to count words in Text Files using Python. Example 1: Count String Words First, we create… Read More
Animations are a great way to make Visualizations more attractive and user-appealing. It helps us to demonstrate Data Visualization in a Meaningful Way. Python helps… Read More
In the world of blockchain, Hyperledger and Ethereum are each the most popular platform and blockchain network respectively. Both are open source. Besides solving numerous… Read More
In this article, we will discuss how to convert an XML to a dictionary using Python. Modules Used xmltodict: It is a Python module that… Read More
Bitcoin is a type of digital cryptocurrency that was first introduced in January 2009, it is decentralized meaning there is no central authority controlling him… Read More
SQL stands for Structured Query Language. It is used to communicate with the database. There are some standard SQl commands like ‘select’, ‘delete’, ‘alter’ etc.… Read More
Given a boolean 2D array, arr[][] of size N*M where a group of connected 1s forms an island. Two cells are said to be connected… Read More
Given an array arr[] consisting of N positive integers, the task is to find the last positive array element remaining after repeated subtractions of the… Read More
Given two arrays A[] and B[] consisting of N integers where A[i] represents the initial position of the ith plane and B[i] is the speed… Read More
Given an array arr[] consisting of N positive integers and a positive integer K, the task is to update the given array by replacing the… Read More
In this article, we will discuss about the SNMPv3 architecture of the computer networks. SNMP stands for Simple Network Management Protocol. It is basically an… Read More
In this article, we are going to see how to read CSV files into Dataframe. For this, we will use Pyspark and Python. Files Used:… Read More
DNSRecon is a free and open-source tool or script that is available on GitHub. Dnsrecon is one of the popular scripts in the security community… Read More
In this article, we are going to filter the dataframe on multiple columns by using filter() and where() function in Pyspark in Python. Creating Dataframe… Read More