˟

Python


Python is an interpreted, high-level, and general purpose programming language. Python’s design philosophy emphasizes code readability with its significant indentation. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large scale projects.

Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly, procedural), object-oriented and functional programming. Python is often described as “a batteries included” language due to its comprehensive standard library. Wikipedia

19 Apr, 2021

[Python] Webcam Streaming with Flask

How to use Flask to stream from your webcam to your browser (more)

12 Apr, 2021

[Python] Profiling your code

Finding bottlenecks and optimizing performance (more)

9 Apr, 2021

[Python] Fast Loop

Lesson learned from “Fast Loop in Python” by James Murphy, mCoding (more)

14 Apr, 2021

Fun 4 - [Python] Maze Solver

Creating and solving a 2D maze with Breath First Search algorithm (more)

4 Apr, 2021

Fun 3 - [Python] 2D Bouncing Ball

Introducing turtle and making your own class by building a bouncing ball simulator (more)

4 Apr, 2021

Fun 2 - [Python] Pong in Pygame

In the second part of the Fun series, we are going to create the classic pong game using Pygame with concepts such as game loop, boundaries, and collision. (more)

4 Apr, 2021

Fun 1 - [Python] A simple Hangman game

Post No. 1 of the Fun series, in which I demonstrate quick, fun, little game that you can code in Python with lessons that you can learn from. (more)