Programming Guidelines

    Style Suggestions
    Trouble-shooting Ideas

Style Suggestions

Trouble-shooting Ideas

             print "Made it to this point"

         Here are some other example "print" statements:

           print "myVariable =",   myVariable

           # To print Python Numeric array information:
           print   "Dimensions of array T:",  T.shape,   "Value of T at point 20, 20: ", T[20][20]