python delete first two indexes April 12, 2023 by wordlinkanswers python delete first two indexes Comment 1 l = [1, 2, 3, 4, 5]<br /> del l[:3] # Here 3 specifies the number of items to be deleted. Popularity 9/10 Helpfulness 4/10 Language python Source: stackoverflow.com Tags: python Share Link to this answer Share Contributed on Feb 19 2020 Worried Wombat 0 Answers Avg Quality 2/10 wordlinkanswers