Drop[list,n]
gives list with its first n elements dropped.
Drop[list,-n]
gives list with its last n elements dropped.
Drop[list,{n}]
gives list with its n element dropped.
Drop[list,{m,n}]
gives list with elements m through n dropped.
Drop[list,{m,n,s}]
gives list with elements m through n in steps of s dropped.
Drop[list,seq1,seq2,…]
gives a nested list in which elements specified by seqi have been dropped at level i in list.


Drop
Drop[list,n]
gives list with its first n elements dropped.
Drop[list,-n]
gives list with its last n elements dropped.
Drop[list,{n}]
gives list with its n element dropped.
Drop[list,{m,n}]
gives list with elements m through n dropped.
Drop[list,{m,n,s}]
gives list with elements m through n in steps of s dropped.
Drop[list,seq1,seq2,…]
gives a nested list in which elements specified by seqi have been dropped at level i in list.
Details

- Drop uses the standard sequence specification:
-
All all elements None no elements n elements 1 through n UpTo[n] elements 1 up to at most n, as available -n last n elements {n} element n only {m,n} elements m through n inclusive {m,n,s} elements m through n in steps of s - Drop can be used on an object with any head, not necessarily List.
- For a matrix, Drop[list,seq1,seq2] effectively drops all elements except those in a submatrix of list.
- Drop works on SparseArray objects.
- Applying Drop to an Association object yields an Association with elements from the specified positions dropped.
Examples
open all close allBasic Examples (6)
Drop the first 2 elements from a list:
Drop the second element from an Association:
Drop all but the first element from an Association:
Drop every other element from 2 to 6 from an Association:
Scope (8)
Drop elements from the third to the third-to-last:
Drop the first row of a matrix:
Drop the first row, and the first two columns:
Drop none of the rows, but the first two columns:
Drop rows 2 through 4 and columns 3 through 5:
Drop every other row and every third column:
Drop the first 4 elements if possible, or as many as are available:
Generalizations & Extensions (2)
Properties & Relations (3)
Possible Issues (1)
Drop always gives a list, even if only one element remains:
Tech Notes
Related Guides
-
▪
- Parts of Expressions ▪
- Parts of Matrices ▪
- Database-Like Operations on Datasets ▪
- List Manipulation ▪
- Basic Image Manipulation ▪
- Elements of Lists ▪
- Rearranging & Restructuring Lists ▪
- Computation with Structured Datasets ▪
- Handling Arrays of Data ▪
- Tabular Objects ▪
- Structural Operations on Expressions
History
Introduced in 1988 (1.0) | Updated in 1999 (4.0) ▪ 2000 (4.1) ▪ 2002 (4.2) ▪ 2003 (5.0) ▪ 2014 (10.0) ▪ 2015 (10.3)
Text
Wolfram Research (1988), Drop, Wolfram Language function, https://reference.wolfram.com/language/ref/Drop.html (updated 2015).
CMS
Wolfram Language. 1988. "Drop." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2015. https://reference.wolfram.com/language/ref/Drop.html.
APA
Wolfram Language. (1988). Drop. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Drop.html
BibTeX
@misc{reference.wolfram_2025_drop, author="Wolfram Research", title="{Drop}", year="2015", howpublished="\url{https://reference.wolfram.com/language/ref/Drop.html}", note=[Accessed: 11-August-2025]}
BibLaTeX
@online{reference.wolfram_2025_drop, organization={Wolfram Research}, title={Drop}, year={2015}, url={https://reference.wolfram.com/language/ref/Drop.html}, note=[Accessed: 11-August-2025]}