Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Remove first element from list

sample_list = [1, 2, 3, 4, 5]
sample_list.remove(sample_list[0])
print(sample_list)
Source by favtutor.com #
 
PREVIOUS NEXT
Tagged: #Remove #element #list
ADD COMMENT
Topic
Name
3+8 =