In this python numpy program, we will create an array of integers by the difference of 6 between them using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create an array of integers between 1-100 by the difference of 6 between them using np.arange().
- Print the output.
import numpy as np
x = np.arange(1,101,6)
print("Array: ",x)
Output :
Array: [ 1 7 13 19 25 31 37 43 49 55 61 67 73 79 85 91 97]