2015. 2. 25. 19:10
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
class MyClass(object):
i=123
def __init__(self):
self.i=345
a=MyClass()
print (a.i) #345
print(MyClass.i) #123
'Python > Python 3.x' 카테고리의 다른 글
putSome.py (0) | 2015.03.05 |
---|---|
withAsReadline.py (0) | 2015.03.05 |
foo.py (feat. a conventional usage of 'self') (0) | 2015.02.25 |
pickleTrial.py (0) | 2015.02.25 |
chat_server / chat_client (0) | 2015.02.21 |