python_while_break.py:
x
 
i = 1
while i < 7:
  print(i)
  if i == 3:
    break
  i += 1