Python beginner mistakes and how to avoid them

6 years ago

One major difference between spoken languages and programming languages is that, errors are much more easily forgiven in spoken languages.However,…

Top 5 Reasons Why Programmers Absolutely Love Python

6 years ago

It's a beautiful language. Simply put Python is a beautiful, elegant language where you can express yourself in code in a very…

Face Recognition on Screen Capture with CV2

6 years ago

This tutorial conveniently makes use of opencv (cv2) library in Python combined with PIL library's ImageGrab for screen capture and…

A guide to Matplotlib’s built-in styles

6 years ago

Just using a couple of lines to generate fantastic charts with your Python code is very cool. What's even cooler…

How to create Matplotlib Animations: The Ultimate Guide

6 years ago

Matplotlib.animation package has a great class that can be used to create great live charts and animations called FuncAnimation. We're…

Linear Search Algorithm (Python Code)

6 years ago

Algorithm: Linear Search FUNCTION: Search PERFORMANCE: О(n) FOUNDED IN: Ancient FOUNDED BY: Anonymous One of the most common and basic…

How to save Matplotlib Animations: The Ultimate Guide

6 years ago

If you are creating animations with Matplotlib's fantastic matplotlib.animation object, chances are you'll also want to save that animation.Saving can…

Insertion Sort Algorithm (Python Code)

6 years ago

Algorithm: Insertion Sort FUNCTION: Sorting PERFORMANCE: О(n2) DESIGN CATEGORY: In Place FOUNDED IN: Ancient FOUNDED BY: Anonymous Insertion sort works…

Bubble Sort Algorithm (Python Code)

6 years ago

Algorithm: Bubble Sort FUNCTION: Sorting PERFORMANCE: О(n2) DESIGN CATEGORY: FOUNDED IN: ~1955? (uncertain) FOUNDED BY: Anonymous The way bubble sort…

Merge Sort Algorithm (Python Code)

6 years ago

Algorithm: Merge Sort FUNCTION: Sorting PERFORMANCE: O(n log n) DESIGN CATEGORY: Divide and Conquer FOUNDED IN: 1945 FOUNDED BY: John…