If you can live with the rules of indentation, python is a lovely programming language, with some very nice features. For example, I love doing something like:
CODE
coords = [0.0, 0.0, 0.0]
(x, y, z) = coords
Python is a much more expressive language than C(++), which can save you a lot of...