Table of Contents

1  Example Jupyter Notebook Tutorial

1.1  Numbers tutorial

1.2  String tutorial

Example Jupyter Notebook Tutorial

demonstrate the usage of our very advanced module….

[1]:
import python_tooling_example

Numbers tutorial

[2]:
python_tooling_example.add_2(2)
[2]:
4

String tutorial

[3]:
python_tooling_example.concat_2("hi there number ") + "!"
[3]:
'hi there number 2!'
[10]:
%matplotlib inline
[11]:
import numpy as np
[12]:
import matplotlib.pyplot as plt
[13]:
plt.plot(np.arange(10))
[13]:
[<matplotlib.lines.Line2D at 0x7fa13320b908>]
_images/Notebook_11_1.png
[ ]: