You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print ('el valor de memoria de la variable edad es', id(edad))
print ('el valor de memoria de la constante 51 es', id(51))
#Esto sucede por la forma optimizada como trabaja Python, utiliza la mimsa direccion de memoria de todas las variables y contantes que tengan valores iguales.