Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 | 29 | 30 |
Tags
- Ga
- matplotlib
- SQL
- Python
- 월간결산
- tensorflow
- 통계학
- Blog
- 서평
- 독후감
- MySQL
- Pandas
- Visualization
- 한빛미디어
- 파이썬 시각화
- 블로그
- 파이썬
- Linux
- MATLAB
- 리눅스
- 한빛미디어서평단
- 서평단
- 티스토리
- Google Analytics
- 시각화
- 매틀랩
- 텐서플로
- 딥러닝
- python visualization
- Tistory
Archives
- Today
- Total
목록iter (1)
pbj0812의 코딩 일기
[PYTHON] next, send, iter
0. 목표 - next, send, iter 실습 1. 실습 1) next - 코루틴 함수의 첫 번째 yield까지 호출한다음 대기 (1) 함수 생성 def next_test(i): print('start') while True: yield i i += 1 print('end') (2) 인스턴스 생성 a = next_test(1) (3) next 실행 next(a) - 결과 start 1 (4) next 다시 실행 next(a) - 결과 end 2 2) send - yield 구문을 특정 변수에 할당하여 코루틴과 메인루틴이 서로 통신하게 함 (1) 함수 생성 def send_test2(i): print('start') while True: value = yield i print(value) i += va..
ComputerLanguage_Program/PYTHON
2020. 6. 7. 22:33