Composición y agregación no son lo mismo en POO, aunque muchas veces se usen como sinónimos.
En este artículo explico sus diferencias en Python, cómo se implementan y qué implicaciones tienen en el diseño de clases.
Una distinción conceptual que mejora la calidad del modelado orientado a objetos.
https://juncotic.com/poo-composicion-y-agregacion/
#Python #POO #DesarrolloSoftware
via #AIFoundry : Microsoft Agent Framework Reaches Release Candidate
https://ift.tt/K29Y7nv
#MicrosoftAgentFramework #ReleaseCandidate #GA #Foundry #AIFramework #AgentFramework #SemanticKernel #AutoGen #OpenSource #NET #Python #MultiLanguage #AzureOpenAI #MicrosoftFoundry #AI…
When you're writing code in a vacuum, it can be difficult to see the forest through the trees.
Tap into the #PyTexas community - a group of compassionate #python developers hosting trainings & other events like #PyTexasConference2026 to support more devs in Texas and beyond. 🚀

Season 1 Lesson 4 Part 2 - Your First Steps - Casting to int Whole Numbers - in Python #jupyternotebook #dataengineer #vibecoding #learncoding #pythonprogramming #python #softwaredeveloper #dataanalysis #codingtutorial #pythoncode
🐍 PyCascades 2026 Sprints
Want to collaborate, contribute to open source, and build with the community? 💜
Join us for sprints at PyCascades! Whether you’re new to contributing or experienced, everyone is welcome.
ℹ️ Details 👉 https://2026.pycascades.com/program/sprints/

It's not just for machine learning, you can do cool stuff to images thanks to this library. #digitalArt #python #imageediting
https://he-arc.github.io/livre-python/pillow/index.html

One of the things to took me literal hours to figure out how to do with #Python typing is to describe a function which relies on structural typing, but is also statically typed and not just "well, it works".
Say I'm writing a voting system, and want to work with structures which have a candidate name and vote count. In #TypeScript I would have:
interface HasVotes {
candidate: string;
votes: number;
}
The pythonic equivalent is:
class HasVotes(Protocol):
candidate: str
votes: int
Once I have a list of these, I want to sort that list by descending votes and then ascending candidate.
1/
Install PyTorch on Windows 10 (3-Step Pip Guide)
Ready to set up PyTorch? Follow this simple 3-step guide to install via pip with CPU & CUDA support, plus quick verification and error fixes. Start building smarter models today.
#PyTorch #Windows10 #Python #MachineLearning #DeepLearning #AI #Izoate
https://www.izoate.com/blog/3-steps-to-install-pytorch-on-windows-10-via-pip/
Content warning:Single daily crossword clue spoiler
I get inordinately excited whenever I run into #Python being mentioned in the wild in surprising ways, like today's crossword in USA Today.

When retrieving a slice with loc in #Python #Pandas, the end point is included, highly unusual in Python!
s = pd.Series([10, 20, 30, 40, 50], index=list('abcde'))
s.loc['a':'c'] # a, b, c (inclusive!)
s.iloc[0:2] # a, b (exclusive, like Python)

Updated a Django Project i made 10 Years ago and haven't touched in 6.
Surprisingly everything went quite straight forward.
I fucking love #django and #python
Huh. If you evaluate
type(3)
in a Jupyter notebook, you get
int
but if you do it in an interactive Python console, you get:
<class 'int'>