list =[1,2,3,4,5,6,7,8,9]
print(list[-1]) #맨 끝 순서부터 -1로 시작
print(list[0:3]) #0:n => 0번째 부터 n-1번째 까지 출력
print(list[1:]) #1번째부터 끝까지 출력
print(list[:5]) # :n => 처음부터 n-1번째 까지 출력
print(list)
9
[1, 2, 3]
[2, 3, 4, 5, 6, 7, 8, 9]
[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5, 6, 7, 8, 9]
#인덱싱 연산
list_1=[1,2,3]+[4,5]
list_2=[1,2,3]*2
print(list_1)
print(list_2)
[1, 2, 3, 4, 5]
[1, 2, 3, 1, 2, 3]
728x90
'Dev. > Python' 카테고리의 다른 글
python :: if ~ elif~ else / 연산자 예제 (0) | 2022.06.30 |
---|---|
Python :: 컬렉션 - List (0) | 2022.06.29 |
Python :: 함수 / *args (0) | 2022.06.21 |
Python :: 연산자 우선순위와 결합성 (0) | 2022.06.19 |
Python :: 입출력함수/format()과 형변환 (0) | 2022.06.19 |
댓글