Hello and welcome everyone, in this tutorial we are going to crack a zip file password using lists in Python. This does sound interesting. doesn’t it? Well, we are going to d.... Read More
In this tutorial, we will learn how to find vertex, focus and directrix of parabola in Python. What is a parabola? A parabola is a curve in a 2D plane such that every point on that.... Read More
In this module, we are going to learn how to draw various shapes like polygon, rectangle, circle, ellipse, etc. in pygame using Python programming. How to draw Shapes using pygame..... Read More
In this tutorial, we will learn about the Postorder traversal of a tree data structure in Python. It is one of the three variants of the Depth-first search. Postorder tree traversa.... Read More
This tutorial will guide you to learn how to define a function inside a function in Python. You can also name it a nested function. Introduction: Using a function inside a function.... Read More
Hello everybody, in this tutorial, we are going to learn about the predefined macros in C++. Macros in C++ are the statements or expressions defined using #define. The given link w.... Read More
A tree data structure can be traversed in many ways. Generally, there are two types of tree traversal(Breadth-first search and Depth-first search). In this tutorial, we will learn .... Read More
In this tutorial, we will learn one of the three ways of Depth-first searches that is the Preorder traversal of a tree data structure with recursion in Python. It is also known as .... Read More