![]() |
|
#3
|
|||
|
|||
|
Hi,
The break statement will cause a for/while loop to exit. Example: Code:
for i in range(100):
if i == 50:
break
|
|
|