#Python's #itertools is a smash isn't it?
https://docs.python.org/3/library/itertools.html
471 of 1703 triangulations of the 3 x 3 grid
Find the sketch-a-day archives and tip jar at: https://abav.lugaralgum.com/sketch-a-day
Code for this sketch at: https://github.com/villares/sketch-a-day/tree/main/2026/sketch_2026_02_18 #Processing #Python #py5 #CreativeCoding

Python Collections Namedtuple Advanced
Advanced namedtuple usage
Creating named tuples with methods and defaults
Basic named tuple
#python #programming #tutorial #coding #collections #namedtuple #advanced
https://www.youtube.com/watch?v=RDRP8xi0QV0
The 2026 Python Developers Survey is translated into Chinese, French, German, Korean, Japanese, Portuguese, Russian, and Spanish. We hope this encourages our regional communities to participate- take the survey and share with your local Pythonistas! #python #pythondevsurvey
https://surveys.jetbrains.com/s3/python-developers-survey-2026
Python Tip: functools.lru_cache
from functools import lru_cache
@lru_cache(maxsize=128)
def fib(n):
if n < 2: return n
return fib(n-1) + fib(n-2)
fib(100) # instant, not billions of calls
lru_cache memoizes function results. Recursive Fibonacci goes from O(2^n) to O(n) with one...
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
Python Tip: Exception Groups (Python 3.11)
try:
async with TaskGroup() as tg:
tg.create_task(fetch(url1))
tg.create_task(fetch(url2))
except* ValueError as eg:
for e in eg.exceptions:
handle(e)
Python 3.11 ExceptionGroups handle multiple concurrent errors. Essential for async code.
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
VS Code: Python Environments Extension generally available
The new extension for Visual Studio Code aims to end the previous fragmentation and ensure a uniform workflow with Python environments.
#Entwicklungsumgebung #IT #Microsoft #Python #Softwareentwicklung #MicrosoftVisualStudio #news
VS Code: Python Environments Extension allgemein verfügbar
Die neue Erweiterung für Visual Studio Code soll die bisherige Fragmentierung beenden und für einen einheitlichen Workflow mit Python-Umgebungen sorgen.
#Entwicklungsumgebung #IT #Microsoft #Python #Softwareentwicklung #MicrosoftVisualStudio #news
Tonight Valentin Haenel will give a talk on Numba, a Python just-in-time (JIT) compiler. We would be delighted to see many of you there: https://www.meetup.com/python-users-berlin-pub/events/312958754/
#Python #Berlin
Mi web ahora es ~2.8x más rápida al convertirla en SPA gracias a Django LiveView
https://andros.dev/blog/0b307aa9/mi-web-ahora-es-28x-mas-rapida-al-convertirla-en-spa-gracias-a-django-liveview/
#web #python #django #djangoliveview
My website is now ~2.8x faster after converting it to a Django LiveView SPA
https://en.andros.dev/blog/dd5a0746/my-website-is-now-28x-faster-after-converting-it-to-a-django-liveview-spa/
#web #python #django #djangoliveview
Sneak peek into our upcoming episode of #HiddenFiguresofPython!
Meet Sheena O’Connell!
From startups to nonprofit education, @sheena has spent the last five years rethinking how people learn to code.
Founder of Prelude.tech and leader of the Guild of Educators, she supports teachers through practical, community-driven approaches.
We talk #Python, teaching practice, and building strong educator communities.
Hosts: @cheukting_ho & @terezaif
Full episode drops Feb 26
https://www.youtube.com/watch?v=BzIPQyaRR9M