#!/usr/bin/env python # coding: utf-8 # In[1]: import showast # In[2]: get_ipython().run_cell_magic('showast', '', 'print(1 + 2)\n') # In[3]: get_ipython().run_cell_magic('showast', '', 'a = 1\nb = a + 2\nb /= 2.\n') # In[4]: get_ipython().run_cell_magic('showast', '', 'x.y.z().t\n') # In[5]: get_ipython().run_cell_magic('showast', '', "def abc():\n for x in 'abc':\n print(x)\n return 0\n") # In[6]: get_ipython().run_cell_magic('showast', '', 'a, b = [x for x in y if x.z]\n') # In[7]: get_ipython().run_cell_magic('showast', '', '@decorator()\ndef decorated():\n import time\n yield time.time()\n') # In[8]: # showast can also be used to visualize inspectable objects from showast import show_source import antigravity show_source(antigravity) # In[9]: import random show_source(random.choice) # In[10]: import contextlib show_source(contextlib.closing.__enter__) show_source(contextlib.closing.__exit__) # In[11]: # styling options can also be set from showast import Settings Settings['font'] = 'Century' Settings['shape'] = 'oval' Settings['nonterminal_color'] = '#7733AA' # In[12]: get_ipython().run_cell_magic('showast', '', 'def add(x, y):\n return x + y\n')