0
From python
for i in range(10): if i == 999: break else: print("Unbroken 1") for i in range(10): if i == 5: break else: print("Unbroken 2")
4 Answers
+ 8
In the first loop, break won't make any effect as value of i will never be 999.
In the second loop, on the 6th iteration, value of i will become 5 and loop will be broken.
+ 7
Could you please reframe the question pointing what exactly the question is?
https://www.sololearn.com/discuss/1316935/?ref=app
+ 1
Yes you are right Zlytherin..
đ
0
Is break statement make any cause and which part will be going to execute.