Remove a polygon from a list and cancel its displaying

This was the solution:

    elif thisKey == 'space' and not space_func:  
       pol = Poly_List.pop(randint(-1, len(Poly_List)-1))
       pol.setAutoDraw(False) 
       core.wait(random())
       space_func_plus()
1 Like