[104] 리스트에서 짝수 번째 요소만 추출하기

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

listdata = list(range(1,21))
evenlist = listdata[1::2]
print(evenlist)

Comments