Created
September 16, 2018 18:15
-
-
Save santiago-salas-v/01cfbdba7641c89e64fc167839817ab6 to your computer and use it in GitHub Desktop.
ipython / jupyter console: Print input and output history
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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