Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 467 Bytes

File metadata and controls

11 lines (8 loc) · 467 Bytes
group Practical Python
hidden true

Async Development with Python

Python is a single-threaded language, which means that asynchronous development can sometimes be tricky.

In this section we learn about multi-processing, multi-threading, and async development using coroutines and the async and await keywords.

These three different types of asynchronous development each have their strengths and weaknesses, so it's important to understand them all.