Home [Python] List Comprehension
Post
Cancel

[Python] List Comprehension

List Comprehension이란?

리스트를 간단하게 한 줄로 표현하는 파이썬 문법

형태

[ ( 변수를 활용한 값 ) for ( 사용할 변수 이름 ) in ( 순회할 수 있는 값 )]

예시

1
2
3
4
size = 10
arr = [i * 2 for i in range(size)]

print(arr)
1
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]

Ref

https://shoark7.github.io/programming/python/about-list-comprehension-python

This post is licensed under CC BY 4.0 by the author.

[Python] 백준 1002번 : 터렛

[Python] 백준 2447번 : 별 찍기 - 10