In [1]:
# import sys
# sys.path.insert(0, '../../')
# from simpli.manager import Manager

from environment import *

%matplotlib inline
%load_ext autoreload
%autoreload 2


Added '../tools/' to the path.

In [35]:
def a_function_in_a_notebook(min_n, max_n, by=1, prefix='Number'):
    for n in range(min_n, max_n, by):
        print('{} {}'.format(prefix, n))

In [ ]:


In [4]:
from a_library.a_file import a_function_in_a_file

In [5]:
# Modality 1
a_function_in_a_file(
    1,  # Required Arg 1
    2,  # Reuired Arg 2
)


<A function in a file> Required argument 1 & 2: 1 & 2.

In [ ]:
# m = Manager(True)
# m.update_globals(globals())
# t = m.get_task(notebook_cell_text=In[7])
# m.code_task(t)