Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

내장 클래스 속성 __doc__은 파이썬에서 무엇을 합니까?

<시간/>

모든 함수에는 함수 소스 코드에 정의된 문서 문자열을 반환하는 __doc__ 속성이 내장되어 있습니다.

def foo():
    """ This is an example of how a doc_string looks like.
          This string gives useful information about the function being defined.
    """
    pass
print foo.__doc__

이것을 인쇄할 때 어떻게 보이는지 봅시다.

This is an example of how a doc_string looks like.
          This string gives useful information about the function being defined.