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
- hadoop2
- 알고리즘
- codingthematrix
- graph
- 하둡2
- 하이브
- scrapy
- C언어
- tensorflow
- effective python
- GRU
- LSTM
- HelloWorld
- RNN
- Sort
- Java
- C
- recursion
- 선형대수
- collections
- 코딩더매트릭스
- yarn
- 딥러닝
- python
- 주식분석
- 파이썬
- 텐서플로
- 그래프이론
- hive
- NumPy
Archives
- Today
- Total
목록리스트 컴프리헨션 (1)
EXCELSIOR
BETTER WAY 7 - map과 filter 대신 리스트 컴프리헨션을 사용하자
BETTER WAY 7 - map과 filter 대신 리스트 컴프리헨션을 사용하자Item07 - Use List Comprehensions Instead of map and filterPython에서는 한 리스트에서 다른 리스트를 만들어내는 간결한 문법이 있다. 바로 리스트 컴프리헨션(list comprehension) 이라고 한다.12345678# List Comprehension을 이용해 루프를 돌면서 # 아래와 같이 계산이 가능하다.a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]squares = [x**2 for x in a]print(squares)'''출력결과[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]'''Colored by Color Scriptercs..
Python/Effective Python
2018. 2. 23. 16:03