순서가 있는 데이터
cities = [] cities2 = list()
str_list = ['apple','grape','tomato'] all_list = ['hello',1,True,1.0]
movies = ["루시","배트맨","스파이더맨","아이언맨","스파이더맨"]
# index 찾는 방법
# 없으면 오류
print(movies.index('루시'))
# count() : 개수
print(moives.count('루시))
# append() : 맨 뒤에 element 추가한다
movies.append('셜록홈즈')
# insert() : 원하는 위치에 element 추가
movies.insert(2,'그래비티')
# extend() : 두 개의 list를 합치는 것
movies.extend(['밀양','인셉션'])
# pop() : 꺼내기
a = movies.pop() # 맨 마지막 element
b = movies.pop(0)
# sort() : list 자체를 변경시킨다.
movies.sort()
movies.sort(reverse = True) # 역순
# copy 하는 법
a = [1,2,3]
b = a.copy()
c = list(a)
d = a[:]
# in : 원소 중에 존재하는 지 확인, 결과값은 boolean
print(0 in a)