[Python] for in 반복문 (for in, range, enumerate)
1. for in 반복문 for item in iterable: 반복할 명령어들 iterable member를 하나씩 반환할 수 있는 object(객체), 즉 값을 하나씩 꺼낼 수 있는 객체 eg) list, dictionary, set, string, tuple, bytes 등 example = [1, 2, 3, 4, 5] for num in example: if num % 2 == 0: print(num) 위의 코드는 example 리스트에서 짝수만 출력하는 코드이다. example의 값이 하나씩 num이라는 변수에 저장되어 만약 num이 2로 나누어 떨어진다면 출력되는 것이다. 2. range for i in range(5): 반복할 명령 range(시작 숫자, 끝 숫자, 증가량) 형태로 사용된다...
2021. 9. 19.