Search

Python 02. Python Condition & Loop (조건문과 반복문)

Created at
2018/07/08
Updated at
2021/01/19
Tags
Keywords
3 more properties
목차

1. 입력 (Input)

2. 출력 (print)

3. 조건 : if, elif, else

4. 반복 (loop)

while, for, list comprehension 반복문
break, continue

4.1 while

4.2 for문

range, zip, enumerate

4.3 list comprehension

반복되어 출력되는 리스트 형태의 데이터를 만들어주는 문법
for문보다 속도가 빠름 (갈수록 굉장히 중요한 부분!)
ls = [<vlaue> for <value> in <list> (if <condition>)]
간단한 형태만 가능하지만 가능한 한 많이 쓰면 좋은 문법
참고자료
패스트캠퍼스, 데이터사이언스스쿨 8기 수업자료