elif opcion == "3": productos = inventario.listar_productos() for p in productos: print(p)
elif opcion == "2": id = int(input("Ingrese el ID del producto a eliminar: ")) inventario.eliminar_producto(id) ultimate python de cero a programador experto descargar new
from producto import Producto
from inventario import Inventario from producto import Producto elif opcion == "3": productos = inventario
def __str__(self): return f"Producto {self.nombre} - {self.descripcion}" ultimate python de cero a programador experto descargar new
class Inventario: def __init__(self): self.productos = []
inventario = Inventario()