[python] list에서 사용가능한 메소드





💡 팁 아래 표를 참고해주세요

메소드

설명

list.append(obj)

list에 object를 추가합니다.

list.count(obj)

list의 object 개수를 반환합니다.

list.index(obj)

list에서 object 처음 발견 위치를 반환합니다.

list.insert(index, obj)

list에서 특정 위치에 object를 삽입합니다.

list.remove(obj)

list에서 처음 발견되는 특정 object를 삭제합니다.



1. list.append(obj) 

  • list에 object를 추가합니다.

    1
    2
    3
    4
    list1 = ['바나나','우유','초콜릿']
    list1.append('딸기')
     
    print(list1)
    cs




2. list.count(obj) 

  • list의 object 개수를 반환합니다.

    1
    2
    3
    4
    5
    6
    7
    list1 = ['바나나','우유','초콜릿']
     
    list1.append('딸기')
    list1.append('딸기')
     
    print(list1.count('딸기'))
     
    cs



3. list.index(obj) 

  • list에서 object가 처음 발견되는 위치를 반환합니다.

    1
    2
    3
    4
    5
    6
    7
    8
    list1 = ['바나나','우유','초콜릿']
     
    list1.append('딸기')
    list1.append('딸기')
    list1.append('우유')
     
    print(list1.index('우유'))
     
    cs




4. list.insert(index.obj) 

  • list에서 특정 위치에 object를 삽입합니다.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    list1 = ['바나나','우유','초콜릿']
     
    list1.append('딸기')
    list1.append('딸기')
    list1.append('우유')
    list1.insert(0,'딸기')
     
    print(list1)
     
    cs




5. list.remove(obj) 

  • list에서 처음 발견되는 특정 object를 삭제합니다.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    list1 = ['바나나','우유','초콜릿']
     
    list1.append('딸기')
    list1.append('딸기')
    list1.append('우유')
    list1.remove('바나나')
     
    print(list1)
     
    cs





[참고] len(list) 

  • list내 객체의 전체 개수를 반환합니다.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    list1 = ['바나나','우유','초콜릿']
     
    list1.append('딸기')
    list1.append('딸기')
    list1.append('우유')
    list1.remove('바나나')
     
    print(list1)
    print(len(list1))
    cs


댓글 쓰기

0 댓글