복붙노트

[PYTHON] 파이썬 : 함수에 대한 정보를 얻는 방법?

PYTHON

파이썬 : 함수에 대한 정보를 얻는 방법?

유형에 대한 정보가 필요한 경우 다음을 사용할 수 있습니다.

my_list = []
dir(my_list)

도착 :

['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

또는:

dir(my_list)[36:]

도착 :

['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

자, 파이썬에 대한 정보에서이 함수들에 대한 정보를 얻을 수 있지만 터미널 / 명령 행에서이 함수들에 대한 정보를 얻고 싶습니다. 어떻게해야합니까?

해결법

  1. ==============================

    1.파이썬에서 : help (my_list.append) 예를 들어, 함수의 docstring 줄 것이다.

    파이썬에서 : help (my_list.append) 예를 들어, 함수의 docstring 줄 것이다.

    >>> my_list = []
    >>> help(my_list.append)
    
        Help on built-in function append:
    
        append(...)
            L.append(object) -- append object to end
    
  2. ==============================

    2.시험

    시험

    help(my_list)
    

    내장 된 도움말 메시지를 얻을 수 있습니다.

  3. ==============================

    3.또는

    또는

    help(list.append)
    

    네가 일반적으로 주위를 파고 있다면.

  4. from https://stackoverflow.com/questions/5430020/python-how-to-get-information-about-a-function by cc-by-sa and MIT license