Answers for "python list pick every nth element"

2

python extract every nth value from list

# Basic syntax:
new_list = your_list[start_index::spacing]

# Example usage using list slicing:
# Say you have the following list and want every third item
your_list = [0,1,2,3,4,5,6,7,8,9]
new_list = your_list[0::3]

print(new_list)
--> [0, 3, 6, 9]
Posted by: Guest on November-06-2020
0

every second value python

import numpy as np
values=np.arange(0,10)
print(values[::2])
Posted by: Guest on March-21-2020

Code answers related to "python list pick every nth element"

Python Answers by Framework

Browse Popular Code Answers by Language