상세 컨텐츠

본문 제목

[Python] 리스트 메서드

Python

by TUZA 2022. 6. 8. 01:08

본문

# 리스트 데이터 삭제하는 방법
fruits = ['apple','orange','mango']
fruits.pop() # mango

print(fruits)
['apple','orange']

# 리스트 데이터 삭제하는 방법(인덱스 이용)
fruits = ['apple','orange','mango']
fruits.pop(0) # apple

# 리스트 데이터 삭제하는 방법(데이터 이용)
fruits = ['apple','orange','mango']
fruits.remove('orange')
print(fruits) # ['apple','mango']

# 리스트 특정 값의 인덱스 구하는 방법
fruits = ['apple','orange','mango']
fruits.index('orange') # 1

# 리스트 특정 값의 개수 구하는 방법
fruits = ['apple','orange','mango','apple']
fruits.count('apple') # 3

# 리스트 모든 요소 삭제하는 방법
fruits = ['apple','orange','mango','apple']
fruits.clear() # []

#리스트 정렬하기
numbers = [5,2,8,1,10]
numbers.sort()
print(numbers) # [1,2,5,8,10]


# enumerate
# fro in 반복문 사용할 때 인덱스를 같이 출력하는 방법

numbers = [5,2,8,1,10]
for index, number in enumrate(numbers):
		print(index, number)
반응형

'Python' 카테고리의 다른 글

[Python] 할당과 복사  (0) 2022.06.08
[Python] 리스트 내포(Comprehension)  (0) 2022.06.08
[Python] 문자열 포메팅  (0) 2022.06.08
[Python] 문자열 다루기  (0) 2022.06.06
[Python] 소수점 관리하기  (0) 2022.06.04

관련글 더보기