[Phyton] List / Aliasing vs Slicing / List of lists
LIST 리스트는 서로 다른 타입이면서도 복수의 값들을 '읽고 쓸수' 있는 Python의 내장 데이터 타입이다. >>>whales = [1,2,3,4,5,6,7,8,9,10,11,12,13,14] whale 이란 변수는 14개의 값을 저장한, list 를 포함한다. whales refers to a list with 14 elements [] is an empty list: a list with no elements A list is an object, but it also contains the memory addresses of other objects >>>whales[0] 1 >>>whales[-1] 6 >>>another = whales[0] >>>another 1 Lists can contai..
더보기