(7/21)자료구조3

채병기·2022년 7월 21일
0

리스트 슬라이싱

[n:m]을 이용하염 리스트에 원하는 아이템만 뽑아낼 수 있다.

['이이유', '박찬호', '이용인', '김은주', '강호동']

[2:4] 2에서 4전까지

'이용인''김은주'

students = ['이이유', '박찬호', '이용인', '김은주', '강호동']
print('students: {}'.format(students))
print('students: {}'.format(students[2:4]))
print('students: {}'.format(students[:4]))
print('students: {}'.format(students[2:]))

profile
함께 세상을 만드는 사람들

0개의 댓글