In python break statements can alter the flow of a normal loop,loops iterate over a block of code until test expression is false.the following example of break statements.
for val in "bharat":
if val == "r":
break;
print(val);
b
h
a