#!/usr/bin/env python # coding: utf-8 # In[1]: a = 5 b = 10 c = 1/0 # will fail # nothing below here matters d = a e = b f = c # "Run all" will not execute any of the below cells # due to the error in the cell above # In[ ]: a # In[ ]: b # In[ ]: c # In[2]: get_ipython().system('pip list') # In[ ]: