파이썬[Python]: 내장함수 - __doc__ 변수

내장함수 - __doc__ 변수(variable)


/// 설명

패키지, 모듈, 클래스, 함수(메서드)에 관련된 정보를 표현합니다. A Variable in Python Standard

※ 형식
__doc__

reference
https://docs.python.org/3/reference/datamodel.html

/// 예제

1
print(__doc__)  # None
cs

/// 예제

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import array
 
# print(package_name.__doc__)  # try this
 
# document of a module
print(array.__doc__)
print('+=' * 40)
 
# document of a method
print(array.array.__doc__)
print('+=' * 40)
 
# document of a variable(?)
print(array.typecodes.__doc__)
print('+=' * 40)
 
# it may be changed
__doc__ = '__doc__'
print(__doc__)  # __doc__
 
array.__doc__ = 'changed'
print(array.__doc__)  # changed
 
# array.array.__doc__ 'a'  # Error
 
 
cs

* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)


– 당신을 응원합니다. –

댓글

이 블로그의 인기 게시물

파이썬[Python]: 내장함수 - from_bytes 메서드

파이썬[Python]: 내장함수 - __len__ 메서드

파이썬[Python]: kivy - 한글 사용

C 언어: sin 함수, cos 함수, tan 함수

파이썬[Python]: 내장함수 - bit_length 메서드