Pastebin
Paste #2223: No description
< previous paste - next paste>
Pasted by Flawless
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
Go to most recent paste.