Python

Install python: From a terminal, type "python" to get the python command line prompt ">>>". Examples of things you can do in python are: >>> x = 2. >>> y = 3. >>> print x*y 6.0 >>> def function(x,y) # Define a function ... function = x*y # The content of a function must be indented ... return function ... # Type "return" to end the function >>> print function(x,y) 6.0 reload