Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- python popen
- regex_search
- InfluxDB
- 1697
- c3 초
- snmp test
- c3 축 없애기
- linux시간으로 변경
- grafana dashboard
- c3 축 가리기
- python subprocess
- 정규식 활용
- gcc regex
- gcc 업데이트
- python os
- centos pyhon 설치
- c3 step graph
- influxdb 설치
- 정규식 문자열 출력
- selinux port 등록
- CentOS7
- telegraf
- semanage
- snmp
- subporcess path
- c3 second
- 정규식 컴파일
- c++ 정규식
- g++ 업데이트
Archives
- Today
- Total
리셋 되지 말자
[python 공부] 파이썬 순열, 조합 본문
medium.com/@hckcksrl/python-permutation-combination-a7bf9e5d6ab3
감사합니다.
# 순열
from itertools import permutations
# 조합
from itertools import combinations
a = [1,2,3,4,5]
permute = permutations(a, 3)
print(list(permute))
a = [1,2,3,4,5]
combi = combinations(a, 3)
print(list(combi))
'Python' 카테고리의 다른 글
[python 문법] 나눗셈 (0) | 2021.04.28 |
---|---|
[python 문법] range (0) | 2021.04.28 |
[python 공부] 프로그래머스 코딩 팁 기록 (0) | 2021.04.09 |
[python 문법] map, filter, 람다 표현식, 리스트 컴프리헨션, 리스트 컴프리헨션 (0) | 2021.02.26 |
[python 문법] 타입 힌트 (0) | 2021.02.26 |
Comments