I have a nested for and if structure as in below:
for i in range(n):
for j in range(n):
if i!=j:
if i<j:
if i!=0 and j!=0:
if max==saving[i,j]:
c1 = i
c2 = j
I want to break all of the if conditions and for loops when c1 and c2 are found. Where should I use "break" control ? Thanks.