What i have:
list_1 = ["a", "b", "c"]
rounds = 5
What i need: get elements of a small list one at a time, for n
times; considering that the length of the list is smaller than n
:
for _ in range(rounds):
-> get element of list_1 sequentially
Expected result:
"a"
"b"
"c"
"a"
"b"
obs: numpy approaches are acceptable.
Thanks