I want to check out if org-mode could be a good replacement for Jupyter notebooks. Is there a way to export all variables from a code block to other code blocks?
Example:
#+BEGIN_SRC python
a = 1
b = 2
#+END_SRC
How could I use this in other code block? For example I'd like the following to evaluate so that c = 3
#+BEGIN_SRC python
c = a + b
#+END_SRC
It can be achieved using session feature:
Will return