You can delete an item or a slice from a list with del : Delete : List PYTHON TUTORIALS


PYTHON TUTORIALS » List » Delete »

 

You can delete an item or a slice from a list with del


x = [12345]
print x
del x[1]                 # x is now [1345]
print x
del x[::2]               # x is now [35]
print x



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo List
» Delete