how to continue python within for code example
Example 1: continue statement python
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
Example 2: while loop in python for do you want to continue
while True:
# some code here
if input('Do You Want To Continue? ') != 'y':
break