Dec-06-2022, 12:54 AM
(Dec-05-2022, 08:48 PM)deanhystad Wrote: Looks like you want the task list to be: a, b, c, a, b, c, a, b, c, a
If there was just some kind of ITERATOR TOOL that would CYCLE through a list for as long as needed?
You can also use indexing and the modulo operator, but the above hint is better.
If you don't want to search any more after those hints, let me know and I'll give it to you straight
Evening,
Found ITERTOOLS and CYCLE which are great, got it to cycle through endlessly. When I try to use that to combine the lists I'm back to where I've been with for loops, random. choice and such. The result is a partial list, or just a re-labled list..
any more hints?