def fun_name():
 for condition:
  for condition:
   if condition:
    #continue 
   else:
    pass 
How do i jump to the outer for loop as there is no goto or label keyword in python ? Continue will return me to the inner for loop. Is there a way to achieve this ?
 
    