Misterio de Python: ¿Descifras este código?

Aprende mutabilidad en Python con ejemplos de enteros y listas, entiende cuándo se crean o comparten objetos y evita errores comunes de código.

11 sept 2025 • 3 min read • Q2BSTUDIO Team

Inteligencia-Artificial-

Presentamos un acertijo sencillo pero revelador sobre uno de los conceptos más fundamentales de Python. Observa este código y predice qué mostrará por pantalla:

a = 500 b = a a = a + 100 list1 = [1, 2] list2 = list1 list1.append(3) print(b) print(list2)

Opciones: A) b es 600 y list2 es [1, 2] B) b es 500 y list2 es [1, 2, 3] C) b es 500 y list2 es [1, 2] D) b es 600 y list2 es [1, 2, 3]

Respuesta correcta: B. La salida será b es 500 y list2 es [1, 2, 3]. Si no lo adivinaste no te preocupes: este comportamiento confunde a muchos desarrolladores porque depende de la mutabilidad de los objetos en Python.

Desglosemos lo que ocurre paso a paso. Primera parte, enteros: a = 500 crea un objeto entero con valor 500 y asigna el nombre a a ese objeto. b = a hace que b apunte al mismo objeto 500. Cuando se ejecuta a = a + 100 se evalúa a + 100 dando 600, Python crea un nuevo objeto entero 600 y reasigna a para que apunte a ese nuevo objeto. Los enteros son inmutables, por eso b sigue apuntando al objeto 500.

Segunda parte, listas: list1 = [1, 2] crea un objeto lista y list2 = list1 hace que list2 apunte a la misma lista. list1.append(3) modifica la lista existente añadiendo 3. Las listas son mutables, así que la modificación afecta a ambas referencias y list2 mostrará [1, 2, 3].

La lección clave: en Python las variables son nombres que apuntan a objetos, no cajas que contienen valores. Varias etiquetas pueden apuntar al mismo objeto. Si el objeto es inmutable, las operaciones crean nuevos objetos. Si es mutable, las operaciones pueden alterar el mismo objeto y las demás referencias verán el cambio.

Un ejemplo habitual que causa errores es el uso de listas por defecto en funciones. Por ejemplo:

def add_item(item, target_list = []): target_list.append(item) return target_list list1 = add_item(primero) list2 = add_item(segundo) # resultado inesperado list2 es [primero, segundo]

El valor por defecto [] es un objeto mutable compartido por todas las llamadas, así que entender mutabilidad evita este tipo de bugs.

Pruébalo con este otro fragmento e intenta predecir la salida: x = hello y = x x = x + world dict1 = {key: value} dict2 = dict1 dict1[key] = modified print(y) print(dict2) Respuesta: y conservará el valor original porque las cadenas son inmutables, mientras que dict2 reflejará la modificación porque los diccionarios son mutables.

En Q2BSTUDIO aplicamos estos principios en proyectos reales de desarrollo de software a medida y aplicaciones a medida para garantizar código robusto y mantenible. Si buscas soluciones personalizadas, visita nuestra página de desarrollo de aplicaciones a medida. También ofrecemos servicios de inteligencia artificial para empresas, agentes IA y automatizaciones que aprovechan buenas prácticas de diseño para evitar errores relacionados con mutabilidad.

Además, en Q2BSTUDIO somos especialistas en ciberseguridad, servicios cloud aws y azure, servicios inteligencia de negocio y power bi, así como en soluciones de software a medida que integran IA para empresas y agentes IA para optimizar procesos. Comprender conceptos como mutabilidad mejora la calidad del software y evita sorpresas en producción.

Si te interesa profundizar en Python, IA, ciberseguridad o migraciones a la nube, contáctanos y te ayudamos a diseñar la solución adecuada para tu proyecto.

A BREAK?

Play for a moment before you go

OUR SERVICES

How we can help you

Artificial intelligence

AI agents, chatbots, and intelligent assistants that automate tasks and serve your customers 24/7 to improve the efficiency of your business.

More info

Software Development

Web, mobile, and desktop applications, intranets, e-commerce, SaaS, and management platforms designed for your company's specific needs.

More info

Cloud services

Migration, infrastructure, managed hosting, high availability, and security on Microsoft Azure and Amazon Web Services to help your business scale without limits.

More info

Cybersecurity and pentesting

Security audits, penetration testing and protection of applications, data and infrastructure on-premise and cloud, with ethical hacking and regulatory compliance.

More info

Business Intelligence

Dashboards and data analysis with Power BI: we integrate your sources, design dashboards and KPIs and turn your data into decisions.

More info

Process automation

We automate repetitive tasks and connect your applications with n8n, Power Automate, Make, and RPA, eliminating manual work and increasing productivity.

More info

Training for Companies

We train your teams in technology with criteria: web development, databases, Git, best practices and security, automation with n8n, artificial intelligence for companies and creation of AI solutions with Azure AI Foundry.

More info

Code Auditing

We audit the code that you, your team or an AI create: we tell you what is good and what to improve, we secure it and make it ready for production, web or app.

More info

AI Image Generation

We create for you the images that your business needs with artificial intelligence: product, networks, advertising, illustration and avatars. You tell us what you want and we deliver it ready to use.

More info

AI Video Generation

We create videos with artificial intelligence for you: promotional, networking, virtual presenters, dubbing and animations. You tell us the idea and we will deliver it assembled and ready to publish.

More info

AI Conversational Avatars

We create conversational avatars with AI – digital humans with a face and voice – that serve your customers and teams with the knowledge of your company, on your website, interactive monitors, WhatsApp or Teams.

More info

Online Marketing and AI

Google Ads, Meta Ads, LinkedIn Ads and AI Engine Positioning (GEO/AEO): we attract customers and make your brand appear where they search for you, also on ChatGPT, Gemini and Perplexity.

More info

Do you have a project in mind?

Tell us your vision and we'll turn it into a software solution. Whatever the scope, we make your idea real.

Live Chat