Skip to content

Commit 51c9c5d

Browse files
authored
흔한 찐따의 파이썬 내용 정리 - 6일차 내용 추가
흔한 찐따의 파이썬 내용 정리 - 6일차 내용 추가
1 parent d6907fc commit 51c9c5d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tutorial/내용 정리/06일차.md

+6
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ def f(x, y):
5959
print(f.__doc__)
6060
```
6161

62+
- 혹은 다음과 같이 파이썬 내장 함수인 `help` 함수를 사용해서 확인할 수 있다.
63+
64+
```python
65+
print(help(f))
66+
```
67+
6268
## return
6369
- `return` 키워드는 함수의 결과값(output)을 돌려주는 키워드이다.
6470
- `return` 키워드를 사용하지 않을 경우, 함수의 결과값은 `None` 이 된다.

0 commit comments

Comments
 (0)