python_ref_keyword_continue_1.py:
x
 
for i in range(9):
  if i == 5:
    continue
  print(i)