I am running a cell in Jupyter notebook where an error is bound to occur after some time(usually hours). But even after this error occurs, I want the compiler to just move on to the next cell and run the remaining cells that I put in the queue to be run after this cell finishes.
I know exceptions might be able to do this, but I wanted to know if there was any other way specific to Python or Jupyter notebook that might do the trick.
Cell 1: Some code running # Error will occur here and stop the execution
Cell 2,3...,n: Some code # Code should still run after the error occurs in Cell 1
Thanks for any solutions. The help is appreciated.