티스토리 뷰
print(print.__doc__)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.
일단은 방법이 함수, 클래스, 모듈 다 다르다!!
함수의 docstring
def add_binary(a, b):
'''
Returns the sum of two decimal numbers in binary digits.
Parameters:
a (int): A decimal integer
b (int): Another decimal integer
Returns:
binary_sum (str): Binary string of the sum of a and b
'''
binary_sum = bin(a+b)[2:]
return binary_sum
print(add_binary.__doc__)
라이브러리 추천
[출처]
'PL > Python' 카테고리의 다른 글
[Python] filter 함수 (1) | 2022.11.30 |
---|---|
[Python] Decorator을 써서 print를 깔끔하게 해보자 (0) | 2022.03.23 |
[Python] Call by Object Reference (객체 참조에 의한 호출) (0) | 2022.01.17 |
[Python] linked list의 runner 기법 (0) | 2022.01.05 |
[Python] is와 ==의 차이 (0) | 2022.01.05 |