WMATA’s Data Lab is hiring summer interns From June–August 2026, need Python skills + passion for public transit
See link in our DIscord. #JobAlert #Transit #Python #transportation #Internship

Exponential time is so unusual I completely left out of my article that discusses time complexity in #Python.
https://pym.dev/time-complexities/
You might counter with "we could use functools.cache to make it essentially linear time".
You're right. But this non-recursive version is pretty simple!
def fibonacci(n):
a = b = 1
for _ in range(n-1):
a, b = b, a+b
return a
And if you really cared about performance (you shouldn't) there's a constant time version.
Today's #Python tip was about how the only time I recommend using recursion is for creating tree-like structures or traversing tree-like structures.
I didn't make a very good case for this claim and I (rightfully) got some push back on this.
The 2 classic recursion-without-a-tree examples are factorial and fibonacci.
I believe both are better implemented without recursion.
It's possible in Python to dynamically define a function within another function and, we can even return that inner function so that it can be called it later.
Read more 👉 https://trey.io/4u4pj0
Генеративный ИИ как штатный инженер техподдержки: настройка, внедрение, реальные ошибки
Эксперимент, начавшийся как попытка автоматизировать ответы на тикеты, закончился созданием почти самостоятельного "сотрудника" службы поддержки. В статье рассказываю, как мы внедряли генеративную модель в техподдержку, как настраивали контекст, ловили баги. Много практики, немного самоиронии и код, который заставил rethink-нуть наш пайплайн поддержки.
https://habr.com/ru/articles/959252/
#генеративный_ии #автоматизация_поддержки #LLM #техподдержка #обработка_запросов #python #архитектура #контекстная_память
PyFetch 1.1.02 has now been released. Try out PyFetch now! https://github.com/linuxaddict124/pyfetch #python #linux #linuxtool
I'm not sure I can see the ground from the top of this teetering yak stack I am perched atop right now but does anyone happen to know why a fcntl struct on macOS would be laid out with no alignment, at least as per the distinction between the #python struct module's "=" vs. "@" layout
Temos o prazer de anunciar nossa última keynote, Daiane Santos!
Ela é analista de TI da Ação Educativa, coordenadora da Rede comunitária Associação Casa dos Meninos, membro do comitê de Redes Comunitárias desde 2020 e educadora em direitos digitais.
#python #bolhadev #pybr2025 #pythonbrasil

#ai / #ml folks, I could use your help in January (and possibly before & after).
The syllabus will look like this:
2025 - The base
I. AI History - It is difficult for anything else to make sense if people don't understand what is meant when people say AI.
II. #Statistical Underpinings
January - The work
III. Resource Utilization
IV. #Data Cleanup
V. #Python Tooling
VI. #MCP
March - context
VII. Legal Ramifications
VIII. Art?
Details at
https://friendsofccmusic.org/2025/10/22/know-the-enemy-and-know-yourself/
As always, plz boost!
Real World Python https://leanpub.com/set/leanpub/realworldpython by Lukas Rieger and Christian Mayer is the featured Track of online courses on the Leanpub homepage! https://leanpub.com
Kickstart your programming skills now and learn to solve real world problems with Python!
#python #programming #onlinecourses

Reviving, reproducing, and revisiting Axelrod’s second tournament https://lobste.rs/s/5ymtqa #python
https://vknight.org/2025/10/21/rrr.html
Django 6.0 beta 1 released via @paulox https://lobste.rs/s/elts07 #python #release #web
https://www.djangoproject.com/weblog/2025/oct/22/django-60-beta-released/