Notice
Recent Posts
Recent Comments
목록FOR (3)
준호씨의 블로그
python - date range list 만들기, 100일 date list 만들기
date range list 만들기 다음과 같이 get_dates 함수를 만들면 시작일부터 종료일까지 하루씩 차이나는 날짜 리스트를 만들 수 있습니다. from datetime import datetime, timedelta def get_dates(start_date, end_date): delta = timedelta(days=1) result = [] while start_date
개발이야기
2023. 2. 8. 01:48
perl - range operator (..). for loop 응용
아래는 모두 0 부터 9 까지 하나씩 출력 하는 예제이다. 고전적인 for loop for (my $i=0; $i
개발이야기
2018. 10. 18. 10:43
python - 문제 풀이 할 때 알아 두면 유용한 loop 기법
for loop 에서 index 를 알려면 enumerate for i, x in enumerate([1, 3, 5]): print(i, x) 0 1 1 3 2 5 itertools.permutations 순열. 리스트 각 항목이 중복 되지 않는 모든 경우의 조합 구하기 import itertools for perm in itertools.permutations([1, 2, 3]): print(perm) (1, 2, 3) (1, 3, 2) (2, 1, 3) (2, 3, 1) (3, 1, 2) (3, 2, 1) 순열에 대한 자세한 설명은 http://junho85.pe.kr/1025 를 참고 한다.
개발이야기/PS - Problem Solving, 알고리즘
2018. 9. 12. 23:10