Return to Snippet

Revision: 1809
at November 10, 2006 00:01 by whitetiger


Updated Code
class Demo: pass # Oggetto contenitore

def createAttributes():
    rc = Demo()
    
    setattr(rc, 'myobj', 'valore')

    return rc

Revision: 1808
at November 9, 2006 23:55 by whitetiger


Initial Code
class Demo: pass # Oggetto contenitore

def createAttributes():
    rc = Demo()
    
    setattr(rc, 'myobj', 'valore')

    return rc

Initial URL


Initial Description


Initial Title
Python - create attributes

Initial Tags
resize, image, python, download

Initial Language
Python