break Out of the loop ,continue Jump out of the present ( This round ) loop , Continue the next cycle , Until the end of the cycle
L1=[10,20,'ABC','python']
for i in L1:
print(i)
10
20
ABC
python
for i in L1:
if i=='ABC':
break
print(i)
10
20
for i in L1:
if i=='ABC':
continue
print(i)
10
20
python