class Producto: def __init__(self, id, nombre, descripcion, precio, cantidad): self.id = id self.nombre = nombre self.descripcion = descripcion self.precio = precio self.cantidad = cantidad
def listar_productos(self): return self.productos
from inventario import Inventario from producto import Producto