I'm searching to make a loop to go throw samples till I reach the result. Example:
    i=(list(np.random.randint(2, size=5)),list(np.random.randint(2,  size=2)),list(np.random.randint(2, size=7)),list(np.random.randint(2, size=7)),list(np.random.randint(2, size=9)),list(np.random.randint(2, size=8)),list(np.random.randint(2, size=7)))
    tot=0
    for j in range(0,len(anytable)):
        if resp(i,(anytable.iloc[j,0:7].tolist())):  #this function "resp"  gives me True and False and add 1 to variable "tot"
           tot=tot+1
Now I want to stop till I have to tot>=100 . So I have to generate many "i" samples lists till I get to tot>=100.
How can I do this?
Thank you very much