Overload print

2010-08-25 Thread Ross Williamson
Gives: hello I'm looking at finding nice way to print variables in a class just by asking to print it Cheers Ross -- Ross Williamson University of Chicago Department of Astronomy Astrophysics 773-834-9785 (office) 312-504-3051 (Cell) -- http://mail.python.org/mailman/listinfo/python-list

assign class variable in __init__

2010-06-08 Thread Ross Williamson
Hi Everyone, Just a quick question - Is it possible to assign class variables in the __init__() - i.e. somthing like: def __init__(self,self.source = test, self.length = 1) rather than def __init__(self,source = test, length = 1): -- Ross Williamson University of Chicago Department