Skip to content

Commit

Permalink
Fix typo in ch3-generators.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Namnamseo committed Feb 11, 2017
1 parent 5a72867 commit a8f51a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch3-generators.md
Expand Up @@ -79,7 +79,7 @@ def fibon(n):
매우 큰 입력값을 계산하도록 모든 자원을 사용하는 경우입니다 . `제너레이터`를 사용하면 오직 한번만 반복할 수 있다고 했습니다만, 확인 해보지는 않았습니다. 확인 해 보기 전에, 여러분들은 파이썬의 내장함수 `next()`대해서 알아야합니다. 이 함수는 차레의 다음 요소에 접근하려 할때 좋습니다. 이제 확인 해보겠습니다.

```py
def generaotr_function():
def generator_function():
for i in range(3):
yield i

Expand Down

0 comments on commit a8f51a5

Please sign in to comment.