First page Back Continue Last page Overview Graphics

Starting Python

From the shell by starting "python" or "idle-python2.6"

In the Python shell any expression can be calculated:

>>> 3.14159256 * 4

12.566370239999999

>>> 5**4

625

>>> (1+1.045)**20

1636312.4956171759

>>>