L = range(100)
L(::2)
가 의미하는 것은?
L(start:endbefore:step)에서 start에서 endbefore까지 step만큼 커지면서 indexing인데
(::2)는 start가 0, endbefore가 list의 마지막 길이를 말하는것.
즉
L(::2)=L(0:100:2).
반응형
'Programming > python' 카테고리의 다른 글
[python] 파이썬 xlsx 쓰기, openpyxl (0) | 2019.03.19 |
---|---|
[pandas] select rows form dataframe based on values in column (0) | 2019.03.15 |
[python] convert ipynb to py (0) | 2019.02.07 |
[python] list comprehension (0) | 2019.01.30 |
[python] virtualenv, ipykernel 사용법 (2) | 2019.01.29 |