일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준 18428
- 카카오 2020 코딩테스트
- hadoop safe mode leave
- 자소서 빨리 쓰는 법
- 이더리움 #ethereum
- 기업 조사 빨리 하는 법
- 자소서 빨리
- hive beeline 설정
- 카카오 2020 코테
- mac hadoop 설정
- Safe mode is ON
- Resources are low on NN
- mac hive
- code=0)
- is not allowed to impersonate hive (state=08S01
- mac hadoop 3
- mac hadoop 설치
- 자소서 너무 오래 걸림
- mac hadoop
- 카카오 자물쇠와 열쇠
- hive beeline
- 도커 교과서
- 자소서 시간 줄이기
- Failed to connect to localhost:10000
- hadoop safe mode
- mac hive 3
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- 이더리움
- hive beeline 실행
- hive beeline 에러
- Today
- Total
목록Programming Language (49)
A seeker after truth
https://m.blog.naver.com/dydgus092/221287570550#
https://stackoverflow.com/questions/28172008/pycharm-visual-warning-about-unresolved-attribute-reference 꼭 고치지 않아도 되는 에러였다(내 코드의 경우엔 그랬다)
https://hamait.tistory.com/634?category=79136 https://hamait.tistory.com/634?category=79136 https://suwoni-codelab.com/python%20%EA%B8%B0%EB%B3%B8/2018/03/11/Python-Basic-class-staticmethod/
1. 배운점 1) API 사용법 2) virtualenvwrapper 설정 및 사용법 https://hidekuma.github.io/python/virtualenv/virtualenvwrapper/python-virtualenv-wrapper/ 3) 거래소 아키텍처 구성, 설계법 4) 파이썬의 ABC 모듈의 용도, 사용법 https://velog.io/@city7310/abc 5) inspect 모듈의 용도, 사용법 (중에서도 인터프리터 스택) https://python.flowdas.com/library/inspect.html#the-interpreter-stack *inspect.stack(context=1) 호출자의 스택에 대한 프레임 레코드 리스트를 반환합니다. 반환된 리스트의 첫 번째 항목은 ..
def two_times(numarr): result = [] for i in numarr: result.append(i*2) return result 위 코드를 map을 사용할 경우 아래와 같이 변경 가능하다. def two_times(i): return 2*i list(map(two_times, [1,2,3,4])) lambda를 사용할 경우 아래와 같다. list(map(lambda i:i*2, [1,2,3,4])) 결과는 [2,4,6,8]로 동일. list 내장함수는 iterable 객체를 리스트로 변환해주는 파이썬 내장 함수. list(map(int, input().rstrip().split()) 이런 식의 사용도 가능 여기서 주의. map은 그냥 기능을 하는 내장 함수.... 여서 이터레이터 ..