“Список Python pop против удаления” Ответ

Список Python pop против удаления

>>> a = [9, 8, 7, 6]
>>> del a[1]
>>> a
[9, 7, 6]
Glorious Gorilla

Pop vs Удалить Python

"diffrence between 'remove()','pop()' and 'del list[]' functions"
# list.remove()
*It only removes the object it does not bother about indexing.
# list.pop()
* pop removes specific index,also it returns object back.
# del list[]
*it can remove the index and object in it also entire list can be deleted.
#definition of each of the list function concludes some diffrences in them.
*'remove' deals with object while 'pop' and 'del' do focus on index.
*'pop' could return the deleted value of index while 'del' can not.
#These functions are aplicable at list not sequence like tuple.
Gr@Y_orphan_ViLL@in##

Список Python pop против удаления

>>> a = [4, 3, 5]
>>> a.pop(1)
3
>>> a
[4, 5]
Glorious Gorilla

Список Python pop против удаления

>>> a = [0, 2, 3, 2]
>>> a.remove(2)
>>> a
[0, 3, 2]
Glorious Gorilla

Список Python pop против удаления

my_list = ['p','r','o','b','l','e','m']
my_list.remove('p')

# Output: ['r', 'o', 'b', 'l', 'e', 'm']
print(my_list)

# Output: 'o'
print(my_list.pop(1))

# Output: ['r', 'b', 'l', 'e', 'm']
print(my_list)

# Output: 'm'
print(my_list.pop())

# Output: ['r', 'b', 'l', 'e']
print(my_list)

my_list.clear()

# Output: []
print(my_list)
David Cao

Ответы похожие на “Список Python pop против удаления”

Вопросы похожие на “Список Python pop против удаления”

Больше похожих ответов на “Список Python pop против удаления” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования