일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- DANAWA
- Crawling
- 애자일
- algorithm
- Scrum
- pandas
- python
- tensorflow
- TypeScript
- AWS
- analyzing
- visualizing
- Agile
- data analyze
- 프로젝트
- 크롤링
- webcrawling
- angular
- matplotlib
- data
- keras
- opencv
- instance
- ECS
- Project
- Method
- adaptive life cycle
- 자바스크립트
- javascript
- 다나와
Archives
- Today
- Total
목록conditional statements (1)
LiJell's 성장기
03.python_conditional_statements_loop
Modified on Wed Dec 29 -- coding: utf-8 -- """ Created on Wed Dec 15 13:37:35 2021 @author: hanju """ 1) 조건문과 반목문 논리연산자 and or not v1=1 (v1>=3) and (v1=3) & (v15: print('A') else: print('B') A #리스트는 불가 l1 = [1,3,5,7,8] if l1>5: print('A') else: print('B') # TypeError: '>' not supported between instances of 'list' and 'int' 2. 반복문 객체의 각 원소에 동일한 연산처리 진행할 경우 사용 for 문 : 정해진 횟수, 대상이 있을 경우 for 반복변수 in..
Bigdata/파이썬_Python
2021. 12. 15. 17:39