Python tips and tricks, November 2019

Tips and tricks from my Telegram-channel @pythonetc, November 2019 It is a new selection of tips and tricks about Python and programming from my… Read more

Similar

Why Is Python Growing So Quickly?

We recently showed that, based on Stack Overflow question visits, Python has a claim to being the fastest-growing major programming language, and that it has become the most visited tag on Stack Overflow within high-income countries. (more…)

Read more »

Python -m

python -m lets you run modules as scripts. If your module is just one .py file it'll be executed (which usually means code under if __name_...

Read more »