Menu

gitpiper

every_nth python Code Snippet in 2024

listbeginner

Last Updated: 22 April 2024

Returns every nth element in a list.

  • Use slice notation to create a new list that contains every nth element of the given list.
def every_nth(lst, nth): return lst[nth - 1::nth]
every_nth([1, 2, 3, 4, 5, 6], 2) # [ 2, 4, 6 ]

python snippet similar to every_nth For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️