티스토리 뷰
[순열]
중복 없음
import itertools
nums_a = [1, 2, 3]
permu_a = itertools.permutations(nums_a, 2)
중복
import itertools
nums_a = [1, 2, 3]
permu = itertools.product(nums_a, repeat=2)
[조합]
중복 없음
import itertools
nums_a = [1, 2, 3]
permu = itertools.combinations(nums_a, repeat=2)
중복
import itertools
nums_a = [1, 2, 3]
permu = itertools.combinations_with_replacement(nums_a, repeat=2)
'python lecture > basic' 카테고리의 다른 글
[edu] 번역 챗봇 (translate chatbot) (0) | 2018.11.16 |
---|---|
[edu] google translate rest api(구글 번역 rest) (0) | 2018.11.13 |
[edu] 파이썬 시작하기 - 이메일 보내기 (0) | 2018.10.31 |
[edu] 파이썬 시작하기 - 엑셀 입출력 (0) | 2018.10.31 |
[edu] 파이썬 시작하기 - 파일 입출력 (0) | 2018.10.31 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 파이썬
- 장고
- gitlab
- 엑셀 비교
- 문과 코딩
- 파이썬 프로그래밍
- chatbot
- 문서 비교
- 모바일 테마 적용
- 모바일 스킨 적용
- django
- pycrypto
- wsgi
- 이미지 비교
- 면접답변
- 장고 플러스친구 자동응답
- 파이썬 입문
- 파이썬 강좌
- gitignore
- 플러스친구 자동응답
- Tistory
- PuTTYGen
- 장고 카톡 자동응답
- GIT
- admin.py
- 파이썬 독학
- django chatbot
- virtualenv
- Python
- 면접정답
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함