Python - Easy Articles
OpenCV (Open source computer vision) is a library of programming functions mainly aimed at real-time computer vision. OpenCV in python helps to process an image… Read More
Python, being a very dynamic and versatile programming language, is used in almost every field. From software development to machine learning, it covers them all.… Read More
A Min-Heap is a complete binary tree in which the value in each internal node is smaller than or equal to the values in the… Read More
Python is a high-level, interpreted programming language that has easy syntax. Python codes are compiled line-by-line which makes the debugging of errors much easier and… Read More
Prerequisites: Python Programming Language There are several libraries and techniques available in Python for the conversion of Video to Audio. One such library is Movie… Read More
Flask is a web application framework written in Python. Flask is based on the Werkzeug WSGI toolkit and Jinja2 template engine. Both are Pocco projects.… Read More
A list in Python is a linear data structure that can hold heterogeneous elements that do not require to be declared and are flexible to… Read More
Flyweight method is a Structural Design Pattern that focus on minimizing the number of objects that are required by the program at the run-time. Basically,… Read More
Dictionary in Python is an unordered collection of data values that are used to store data values like a map. Unlike other Data Types that… Read More
Composite Method is a Structural Design Pattern which describes a group of objects that is treated the same way as a single instance of the… Read More
Prerequisite: Python Turtle Basics turtle is an inbuilt module in python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on… Read More
In Perspective Transformation, we can change the perspective of a given image or video for getting better insights into the required information. In Perspective Transformation,… Read More
Django Web Framework ships with dozens of tags used to implement arbitrary logics right in the template. Tags look like this: {% tag %} .… Read More
A Django template is a text document or a Python string marked-up using the Django template language. Django being a powerful Batteries included framework provides… Read More
A Django template is a text document or a Python string marked-up using the Django template language. Django being a powerful Batteries included framework provides… Read More
Given a Dictionary. The task is to print the dictionary in table format. Examples: Input:  {1: ["Samuel", 21, 'Data Structures'],  2: ["Richie", 20, 'Machine Learning'], … Read More
Prerequisites: Introduction to Tkinter Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most… Read More
In Python, when a subclass defines a function that already exists in its superclass in order to add some other functionality in its own way,… Read More
We create lots of Python programs per day and want to share them with the world. It is not that you share that Python program… Read More
A Django template is a text document or a Python string marked-up using the Django template language. Django being a powerful Batteries included framework provides… Read More