Warning: This section is outdated.
Note: This should include a short introduction to Python and Numpy
This section holds some basic information on how to use Python and pyFormex.
Simply put: you can either set the arguments in the right order and only give their value, or you can give arguments by their name and value. This last option holds some advantages: not only is it easier to check what you did, but sometimes a function has many arguments with default values and you only want to change a few. If this isn't entirely clear yet, just look at the examples later in this tutorial or check the Python tutorial.
print 'properties' for key, item in properties.iteritems(): print key, item
from properties import *