내장함수 - help(object)
2015. 7. 20. 12:53ㆍIT관련
반응형
https://docs.python.org/2/library/functions.html#help
help(object)
도움말 혹은 object의 class의 주석을 볼 수 있다.
실제로는 많이 사용되지 않을 듯.
>>> class foobar():
... data=[1,2,3]
... def __init__(self, val):
... self.val = val
...
>>> x = foobar
Help on class foobar in module __main__:
class foobar
| Methods defined here:
|
| __init__(self, val)
(END)
>>> help(float)
Help on class float in module __builtin__:
class float(object)
| float(x) -> floating point number
|
| Convert a string or number to a floating point number, if possible.
|
| Methods defined here:
|
| __abs__(...)
| x.__abs__() <==> abs(x)
|
| __add__(...)
| x.__add__(y) <==> x+y
|
반응형
'IT관련' 카테고리의 다른 글
내장함수 - id(obejct) (0) | 2015.07.20 |
---|---|
내장함수 - hex(x) (0) | 2015.07.20 |
내장함수 - hash(object) (0) | 2015.07.20 |
내장함수 - hasattr(object, name) (0) | 2015.07.20 |
내장함수 - globals (0) | 2015.07.20 |