Break & Continue Notes
Break & Continue Notes
c) i=0 d) i=0
while i <10: while i <10:
i=i+1 i=i+1
if i==5: if i==5:
break break
print(i,end='') print(i, end='')
Let’s Recap…..
• Jump statements in python
• break
• continue