Skip to content

Instantly share code, notes, and snippets.

@santiago-salas-v
Created September 16, 2018 18:15
Show Gist options
  • Save santiago-salas-v/01cfbdba7641c89e64fc167839817ab6 to your computer and use it in GitHub Desktop.
Save santiago-salas-v/01cfbdba7641c89e64fc167839817ab6 to your computer and use it in GitHub Desktop.
ipython / jupyter console: Print input and output history
for i in range(0,88):
print('In['+str(i)+']: '+In[i])
if i in Out.keys():
print('Out['+str(i)+']: '+str(Out[i]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment