Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 더현대서울 맛집
- Docker
- AI 경진대회
- hackerrank
- programmers
- leetcode
- 캐치카페
- SW Expert Academy
- 프로그래머스 파이썬
- github
- 데이콘
- 자연어처리
- PYTHON
- 편스토랑 우승상품
- 금융문자분석경진대회
- 백준
- Baekjoon
- 프로그래머스
- 파이썬
- Git
- 코로나19
- 우분투
- gs25
- ubuntu
- dacon
- 맥북
- Real or Not? NLP with Disaster Tweets
- ChatGPT
- Kaggle
- 편스토랑
Archives
- Today
- Total
솜씨좋은장씨
[Python] 이중 for 문 한 줄로 작성하는 방법 본문
728x90
반응형
for 문을 한 줄로 작성하는 방법
ex ) 여러개의 단어가 들어있는 리스트 중에서 길이가 3 이상인 단어만 남기고 싶을 경우
words = ["솜씨좋은장씨", "티스토리", "블로그", "파이썬", "for", "프로그래밍", "반복"]
new_words = [ "솜씨좋은장씨", "티스토리", "프로그래밍" ]
기존 코드
new_words = []
for word in words:
if len(word) > 3:
new_words.append(word)
한 줄로 작성
new_words = [ word for word in words if len(word) > 3 ]
이중 for 문을 한 줄로 작성하는 방법
ex ) 여러 단어들이 담겨있는 2차원 리스트에서 각 리스트 별로 길이가 4 이상인 단어만 남기고 싶은 경우
words = [ [ "솜씨좋은장씨", "파이썬", "프로그래밍", "스터디" ],
[ "Python", "NLP", "ML", "DL" ],
[ "leetCode", "BaekJoon", "HackerRank" ],
[ "멀티캠퍼스", "COMPAS", "DACON", "Kaggle" ] ]
new_words = [ "솜씨좋은장씨", "프로그래밍", "Python", "leetCode", "BaekJoon",
"HackerRank", "멀티캠퍼스", "COMPAS", "DACON", "Kaggle" ]
기존 코드
new_words = []
for word_list in words:
for word in word_list:
if len(word) > 4:
new_words.append(word)
한 줄로 작성
new_words = [ word for word_list in words for word in word_list if len(word) > 4]
비교 코드
for i in v:
for j in i:
print(j)
[j for i in v for j in i]
읽어주셔서 감사합니다~
'Programming > Python' 카테고리의 다른 글
[Python] Selenium webdriver를 python 코드로 쉽게 설치하는 방법 (0) | 2020.09.21 |
---|---|
[Python] Folium 한글 깨짐 현상 해결하기 (0) | 2020.09.21 |
[Python] pip install 시 error: Microsoft Visual C++ 14.0 is required. 오류 해결 방법 (15) | 2020.09.07 |
[Python] Jupyter Notebook 에 가상환경 커널 추가하는 방법 (4) | 2020.07.21 |
[Anaconda] CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. 해결 방법 (1) | 2020.07.17 |
Comments