object Description Returns a new featureless object. Syntax object() Return Value #TODO Time Complexity #TODO Remarks object is a base for all new style classes. It has the methods that are common to all instances of new style classes. Example >>> o = object() >>> o <object object at 0x02AA1510> See Also #TODO