How should I start learning Python?

Short Videos, More Learning. Find Simple Explanations of Programming Concepts. Read more

Similar

Functions in Python

A function is a block of code that performs an operation usually a specific task. Functions help break our program into smaller and modular chunks, making them resusable and redable. They prevent repetition of code. You can pass data known as parameters... (more…)

Read more »

Python asyncio API design pain

I used to love asyncio. For a period of time, nearly all my stuff was written for asyncio. I wrote a Flask-like (mistake IMO) web framework, and a fully async ORM, both built from the ground up for asyncio. I even got in arguments defending it with people... (more…)

Read more »