Python Break Statement in While loop


Break statement in While loop

Program
i=1 while i <= 6: print(i) if(i==3): break; i=i+1
Input
Output