List-Remove

Sat 17 May 2025

title: "Remove Item from list" author: "Rj" date: 2019-04-20 description: "-" type: technical_note draft: false


names = [
    "Kevin",
    "Peter",
    "John"
]
names
['Kevin', 'Peter', 'John']
names.pop(0)
'Kevin'
names
['Peter', 'John']


Score: 5

Category: basics