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 |
Tags
- 텐서플로
- HelloWorld
- LSTM
- 하둡2
- hadoop2
- 딥러닝
- recursion
- NumPy
- C언어
- 선형대수
- Sort
- yarn
- 파이썬
- codingthematrix
- hive
- collections
- 그래프이론
- 주식분석
- tensorflow
- 하이브
- graph
- scrapy
- 코딩더매트릭스
- effective python
- 알고리즘
- C
- python
- GRU
- Java
- RNN
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