variables should be unique and their values should be numerical (integer or
double) or boolean ("True" / "False").
-Later these values can be used as parameters for any operations in
-various components. For example:
+Here is an example of setting of variables in python scripts:
+\code
+import salome_notebook
-\image html box3.png "Box creation in Geometry module"
+notebook = salome_notebook.notebook
-\image html addnode_notebook.png "Node added in Mesh module"
+notebook.set("Length", 100)
+notebook.set("Radius", 37.5)
+notebook.set("Flag", True)
+\endcode
+Later these values can be used as parameters for any operations in
+various components.
*/
\ No newline at end of file