How do I do this in Python ? ############################# declare A,B
function getA return A function getB return B function setA(value) A = value function setB(value) B = value main() getA getB dosomething setA(aValue) setB(aValue) ############################ The part I don't know to do is declare the variables, either as globals or as vars in a class. How is this done in Python without setting them to a value ? Thanks -- http://mail.python.org/mailman/listinfo/python-list