Home | History | Annotate | Download | only in library

Lines Matching full:dropwhile

53 :func:`dropwhile`       pred, seq                       seq[n], seq[n+1], starting when pred fails          ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``
272 .. function:: dropwhile(predicate, iterable)
279 def dropwhile(predicate, iterable):
280 # dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1