PhoenixLecture  2.0.0
Set of tools to make lectures
some_python.py
Go to the documentation of this file.
1 # Some useless comment
2 
3 
4 #{ Then, the import :
5 
6 import numpy as np
7 
8 #{ Let's create some table :
9 
10 tabValue = np.zeros(42, dtype=np.float32)
11 
12