Ejemplo n.º 1
0
def function3():
	print('This is function 2 calling function 1 and saving the result')
	import numpy as np

	result 			=	submodule1.function1()

	np.save('results/some_result',result)
Ejemplo n.º 2
0
def function3():
    print('This is function 2 calling function 1 and saving the result')
    import numpy as np

    result = submodule1.function1()

    np.save('results/some_result', result)
Ejemplo n.º 3
0
def function2():
	print('This is function 2 calling function 1')

	submodule1.function1()
Ejemplo n.º 4
0
def function2():
    print('This is function 2 calling function 1')

    submodule1.function1()