stayhigh, Python
2012年4月28日 星期六
python vars()函數會呼叫會代為呼叫實例的__dict__
>>> class Some:
... def __init__(self):
... self.x = 10
... self.y = 20
...
>>> s = Some()
>>> vars(s)
{'y': 20, 'x': 10}
>>>
用vars()可觀看s的屬性,回傳dict型别物件
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言