python_numpy_array_iterating_1.py:
x
 
import numpy as np
arr = np.array([1, 2, 3])
for x in arr:
  print(x)