Anaconda Prompt에서 개발환경 관리를 위해 사용하는 명령어는 아래와 같다.conda search python : 사용가능한 버전목록을 보여줌conda create -n py34 python python=3.4 anaconda : py34라는 이름으로 python3.4 개발환경을 하나 더 만들어줌activate py34 , deactivate py34 : 개발환경 변경가능 각 환경별로 패키지를 따로 관리한다.conda install python=3.4 : 아예 아나콘다의 기본파이썬 버전을 바꾸는 명령어
문제 링크https://www.codewars.com/kata/take-a-number-and-sum-its-digits-raised-to-the-consecutive-powers-and-dot-dot-dot-eureka/train/python 내 답def sum_dig_pow(a, b): list = [] for i in range(a,b+1): sum = 0 for n,k in enumerate(str(i),1): sum += int(k)**n if i == sum: list.append(i) return list 득점 많은 답def dig_pow(n): return sum(int(x)**y for y,x in enumerate(str(n), 1)) def sum_dig_pow(a, b): retur..
문제링크https://www.codewars.com/kata/554e4a2f232cdd87d9000038/train/python문자열에서 각 문자를 대응되는 문자로 바꿔주는 문제조건이 네가지 밖에 없어서 if와 elif를 이용하면 쉽게 할 수 있다.추천순 높은 두 가지 정답을 살펴보면 아래와 같다def DNA_strand(dna): return dna.translate(str.maketrans("ATCG","TAGC"))python 3.4부터 기본으로 지원되는 str.maketrans를 이용했다.intab과 outtab을 변수로 받아서 translate에 쓸 수 있는 transtable을 만들어준다.maketrans 메서드 설명은 아래 링크 참고함https://www.tutorialspoint.com/p..
문제 링크 https://www.codewars.com/kata/53368a47e38700bd8300030d/train/python딕셔너리 배열로 이름을 입력 받아서 정해진 포맷으로 출력하는 문제이다. 내 풀이는 아래와 같다.def namelist(names): str = '' for i,dic in enumerate(names, 1): if i != len(names) : str = str + dic['name'] + ', ' elif len(names) == 1 : str = dic['name'] else : str = str[:-2] + ' & ' + dic['name'] return strnames의 길이가 1인경우 이름만 출력하게 해주고 나머지 경우는 전부 이름뒤에 ', '을 붙여줬다. 그리고 ..
- Total
- Today
- Yesterday
- 연습문제
- conda
- introduction to algorithms third edtion
- 개봉기
- anaconda
- PYTHON
- CHUWI HI8
- 마스터킹
- Introduction to algorithms
- 하스스톤
- 치닝디핑
- codewars
- 멜킨스포츠
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |