내장함수 - dir([object])
2015. 7. 20. 08:52ㆍIT관련
반응형
https://docs.python.org/2/library/functions.html#dir
dir([object])
현재 정의된 이름들(object, 변수, ...)의 목록을 리턴한다.
>>> dir()
['__builtins__', '__doc__', '__name__', '__package__', 'a', 'b', 'c', 'd', 'e', 'foobar', 'x', 'y']
>>> del x
>>> dir()
['__builtins__', '__doc__', '__name__', '__package__', 'a', 'b', 'c', 'd', 'e', 'foobar', 'y']
>>> dir(y)
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'data', 'ttt']
그렇지.. 파이썬도 shell이라고 불러야 할 듯.
반응형
'IT관련' 카테고리의 다른 글
내장함수 - enumerate(sequence, start=0) (0) | 2015.07.20 |
---|---|
내장함수 - divmod(a, b) (0) | 2015.07.20 |
내장함수 - dict (0) | 2015.07.20 |
내장함수 - delattr(object, name) (0) | 2015.07.20 |
내장함수 - complex([real[, imag]]) (0) | 2015.07.20 |