Remove Item from list

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