Pastebin

Paste #2223: No description

< previous paste - next paste>

Pasted by Flawless

Download View as text

class cls(object):
    x = 10

obj = cls()
print "cls:", cls.x
print "obj:", obj.x

cls.x = 20
print "cls:", cls.x
print "obj:", obj.x

obj.x = 30
print "cls:", cls.x
print "obj:", obj.x

cls.x = 40
print "cls:", cls.x
print "obj:", obj.x

New Paste


Do not write anything in this field if you're a human.

Go to most recent paste.