All Basic Articles
Prerequisite: Creating a button in Tkinter Tkinter is the most commonly used library for developing GUI (Graphical User Interface) in Python. It is a standard… Read More
Given an array arr[] of size N, the task is to find the minimum increments by 1 required to be performed on the array elements… Read More
Prerequisites:  Pandas Matplotlib Data visualization is the most important part of any analysis. Matplotlib is an amazing python library which can be used to plot… Read More
An OrderedDict is a subclass that preserves the order in which the keys are inserted. The difference between OrderedDict and Dict is that the normal… Read More
Python has provided the methods to manipulate files that too in a very concise manner. In this article we are going to discuss one of… Read More
Python GUI tkinter is very useful when we want to take data from users. User attracts from GUI. GUI is very helpful in day to… Read More
Prerequisite: Python GUI – tkinter Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, tkinter is the… Read More
Prerequisites:  Pandas Matplotlib In this article, we will learn how to plot multiple columns on bar chart using Matplotlib. Bar Plot is used to represent… Read More
An ordered list of numbers is called a To findsequence. Each number in the sequence is called a term. The sequence usually has patterns that… Read More
Responsive websites are essential nowadays for the growth of the business. These are websites created to ensure that website looks good on all devices such… Read More
The components in React will re-render only if the state of the component or the props passed to it changes but if we need to… Read More
The useState() is a hook in ReactJs which allows a functional component to have a state. We pass the initial state in this function, and… Read More
The replaceAll() method in JavaScript is used to replace all occurrences of a specified substring or pattern with a new substring. The replaceAll() method does not change… Read More
Bubble sort algorithm is an algorithm that sorts an array by comparing two adjacent elements and swapping them if they are not in the intended… Read More
Date and Time in Android are formatted using the SimpleDateFormat library from Java, using Calendar instance which helps to get the current system date and… Read More
Metasploit is not just a single tool. It is a complete framework. It is a Ruby-based, modular penetration testing platform that enables you to write,… Read More
The Dashboard design is one of the key elements which engages the user with the functionality of the application. It provides information about the overall… Read More
In this article, we will learn how to Censor bad words using Python. For this, we are using the better_profanity module from python. Installation pip… Read More
In this article, we will learn How to allow resizing a PyGame Window.  Game programming is very rewarding nowadays and it can also be used… Read More
In Python, to find the index of a substring in a string can be located by python’s in-built function using find() or index(). Both of… Read More