Python - Basic Articles
Given a String. The task is to find out the Number Of Words And Characters Present In The String.  Examples: Input: Geeksforgeeks is best Computer… Read More
Given two numbers, The task is to find the GCD of the two numbers. Python Program to Find the Gcd of Two Numbers Using STL… Read More
Prerequisite:- Requests , BeautifulSoup The task is to write a program to find all the classes for a given Website URL. In Beautiful Soup there… Read More
Given a String. The task is to swap the first and the last character of the string. Examples: Input: GeeksForGeeks Output: seeksForGeekG Input: Python Output:… Read More
Gross pay is the amount of money an employee earns in a specific time period before any deductions. There are lots of different ways to… Read More
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages… Read More
Given two Matrices, check if all rows contain at least one element common with the same index row of other Matrix. Input : test_list1 =… Read More
Dataset is a collection of attributes and rows. Data set can have missing data that are represented by NA in Python and in this article,… Read More
Numpy is a general-purpose array-processing package. It provides a high-performance multidimensional array object and tools for working with these arrays. It is the fundamental package for… Read More
In this article, we will encrypt/decrypt an image using simple mathematical logic. It requires two things, data, and key, and when XOR operation is applied… Read More
Dstructure is a Python library for creating data structures like linked list, stack, queue, hashmap, tree, etc. A linked list is a linear data structure,… Read More
Python String removeprefix() function removes the prefix and returns the rest of the string. If the prefix string is not found, then it returns the… Read More
Scraping Is a very essential skill for everyone to get data from any website. In this article, we are going to see how to scrape… Read More
In this article, we will learn how to add markers to a Graph Plot using Matplotlib with Python. For that one must be familiar with… Read More
None is used to define a null value or Null object in Python. It is not the same as an empty string, a False, or… Read More
Auxiliary Given a list. The task is to print the largest even and largest odd number in a list. Examples: Input: 1 3 5 8… Read More
This article discusses how we can dynamically detect contours by clicking on the Image and assign different colors to different parts of the image. Contours… Read More
Prerequisite: Python GUI – tkinter Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, tkinter is the most… Read More
A Jupyter notebook is neither a simple text editor nor a full-featured IDE, rather it is an electronic file which contains both programming code and… Read More
A Python list comprehension consists of brackets containing the expression, which is executed for each element along with the for loop to iterate over each… Read More