I have to iterate over a list and get some data. I have thought to make the loop async but I think it is not working.
async def my_check_on_list_element(ele):
code
a_list = ["a", "b", "c", "d"]
for i in a_list:
my_check_on_list_element(i)
I think I miss something, but I don't see what.