-
[python] List 리스트개발 2022. 8. 2. 22:13728x90
여러개의 데이터를 하나의 변수로 묶어 표현할 수 있는 자료형
list1 = [1, 2, 3, 4, 5] print( list1 ) // [1, 2, 3, 4, 5] print( list1[0] ) // 1 print( list1[1] ) // 2 print( list1[2] ) // 3 print( list1[3] ) // 4 print( list1[4] ) // 5 print( list1[:2] ) // [1, 2] print( list1[2:] ) // [3, 4, 5] list2 = [] list2.append(1) list2.append(2) list2.append(3) list2.append(4) list2.append(5) print( list2 ) // [1, 2, 3, 4, 5] list3 = [1, 2.1, "text", [1, 2]] print( list3 ) // [1, 2.1, "text", [1, 2]] print( list3[1:3] ) // [2.1, 'text'] list4 = [1, 2, 3, 4, 5] print( list4 ) // [1, 2, 3, 4, 5] list4[0] = 6 print( list4 ) // [6, 2, 3, 4, 5]
'개발' 카테고리의 다른 글
[python] Dictionary 딕셔너리 (0) 2022.08.04 [python] Tuple 튜플 (0) 2022.08.03 [python] 문자 - 숫자 형변환 (0) 2022.08.02 [그누보드] index, shop 상수 (0) 2022.07.19 jQuery 메뉴용 이벤트 (0) 2022.07.19