First page Back Continue Last page Overview Graphics

Simple Example: Using in Python

>>> import example

>>> example.fact(5)

120

>>> example.my_mod(7,3)

1

>>> example.get_time()

'Tue Jan 13 22:52:26 2015\n'

accessing the global variable My_variable:

>>> example.cvar.My_variable

3.0

>>>