반응형
파이썬에는 아래와 같은 것이 있습니까?
for item in items #where item>3:
#.....
파이썬 2.7과 파이썬 3.3을 함께 의미합니다.
해결 방법
for x in (y for y in items if y > 10):
....
items = [1,2,3,4,5,6,7,8]
odd = lambda x: x % 2 > 0
for x in filter(odd, items):
print(x)
참조 페이지 https://stackoverflow.com/questions/12986996
반응형
'파이썬' 카테고리의 다른 글
파이썬에서 두 정수를 연결하는 방법은 무엇입니까? (0) | 2021.02.03 |
---|---|
파이썬 Python SIP library (0) | 2021.02.03 |
파이썬 Python의 스펙트로 그램을위한 FFT (0) | 2021.02.03 |
파이썬 이미지 크기 (Python, OpenCV) (0) | 2021.02.03 |
파이썬 Remove rows with duplicate indices (Pandas DataFrame and TimeSeries) (0) | 2021.02.03 |
댓글