Have you ever wanted to create a presentation in your computer’s terminal? While this is an uncommon need, a clever…
Browsing: Python
I am happy to announce that my latest book, Python Typing, is now available on all platforms. You can get…
I had a fresh install of macOS Sequoia and typed python3 in a fresh shell. The system found one, ran…
You write a script, hit run, and Python throws NameError at you. The traceback names a symbol you thought you…
Python raises a TypeError when a function call passes a keyword argument the function’s signature does not accept. The traceback…
I had a tuple of integers from a config file and a NumPy function that expected an array. The conversion…
Last quarter I had to plan a 12-stop delivery loop and the route my gut picked came out 38% longer…
Last week a junior dev on my team had a list of route stops and a tuple of fallback hubs,…
Random colors are a small exercise with a surprisingly wide footprint. They show up in test fixtures, data visualization placeholders,…
I tried to write a++ in Python once and got a SyntaxError pointing at the second plus. The fix was…
