I put my question in the notes of the code. I am new to programming. I will more and likely not understand very technical responses. Please, if you can, explain it in the easiest way.
while i < len(stored):
    # I'd like this to break if any of these values are zero. How do I do that?
    if (x, y, z, t) == 0:
        break
 
     
     
    