I have an infinity loop, where I send some request, and I wanna send an element of list from the first to the last and over and over again. Example:
my_list = ['a', 'b', 'c']
while True:
myfunc(my_list)
'''
first iterate: 'a',
second iterate: 'b', third iterate: 'c',
fourth iterate: 'a', and so on.
'''