<div dir="ltr">I was wondering what the best approach for the following might be.<div><br></div><div>Say you have a list P of points and another list N of other items. You can always assume that</div><div><br></div><div style>
len(N) <= len(P)</div><div style><br></div><div style>Now I would like to iterate over P and place one N at each point. However if you run out of N I'd like to restart from N[0] and carry on until all the points have been populated.</div>
<div style>So far I've got</div><div style><br></div><div style>for point in points:</div><div style><br></div><div><div><br></div>-- <br>./Sven
</div></div>