import numpy as np values=np.arange(0,10) for value in values: if value==3: continue elif value==8: print('Eight value') elif value==9: break