count = 0 while count < 8: count += 1 if count % 3 == 0: continue if count == 6: break print(count)
3行
4行
5行
6行