Files
ipynb-variable-inspector/example.ipynb
T
2021-10-23 19:53:47 +02:00

2.3 KiB

In [1]:
from inspector import inspector
In [2]:
inspector
Box(children=(HTML(value='<div class="rendered_html jp-RenderedHTMLCommon"><table><thead><tr><th>Name</th><th>…

Change values below

In [3]:
a = 10
In [4]:
a = b = 3.5
A = B = 123
In [5]:
ccccccccccccc = a * b
In [6]:
d = "String" * 3
In [7]:
del b
In [ ]: