use break after if in python code example
Example 1: python get out of loop
while True:
print('I run!')
break
print('Not in loop!')
Example 2: break function python
if( x > 3):
print('X is greater than 3')
else:
break
while True:
print('I run!')
break
print('Not in loop!')
if( x > 3):
print('X is greater than 3')
else:
break