Create an array of integers by the difference of 6 between them using NumPy.

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
  1. Import the numpy library as np.
  2. Create an array of integers between 1-100 by the difference of 6 between them using np.arange().
  3. 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]
				
			

create an array of odd integers between 1-20.

create a 3×3 matrix.

Leave a Comment