Python : List

김가영·2020년 10월 4일
0

Python

목록 보기
1/17
post-thumbnail

순서가 있는 데이터

빈 리스트 생성

cities = []
cities2 = list()

리스트 생성

  • element(구성요소)가 같은 종류일 필요는 없음
str_list = ['apple','grape','tomato']
all_list = ['hello',1,True,1.0]

method

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)
profile
개발블로그

0개의 댓글