파이썬에서 목록에서 정수를 제거하는 방법

코드 예제

86
0

파이썬 목록에서 요소 제거

myList.remove(item) # Removes first instance of "item" from myList
myList.pop(i) # Removes and returns item at myList[i]
13
0

목록 파이썬에서 값 삭제

list.remove(element)
10
0

값으로 파이썬 목록에서 값 제거

>>> a = ['a', 'b', 'c', 'd']
>>> a.remove('b')
>>> print a
['a', 'c', 'd']
7
0

목록 파이썬에서 항목을 삭제하는 방법

myList = ['Item', 'Item', 'Delete Me!', 'Item']

del myList[2] # myList now equals ['Item', 'Item', 'Item']
1
0

파이썬에서 목록에서 요소를 제거하고 인쇄하는 방법

pop(n) removes the element at the given index number and can print it

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................