About skipping loops

for file in file_List:
   for i in range(1,6):
      if i =1:
        countinue
       
 continue  file file
Feb.17,2022

for file in file_List:

tag = true
for i in range(1,6):
    if i == 1:        -sharp=
        tag = false
        break
if !tag:
    continue

ways for Python to jump out of multiple loops

Menu