Python NumPy atleast_3d Function Example

22

# welcome to softhunt.net
# Python program explaining
# numpy.atleast_3d() function

import numpy as np
num = 15

print ("Input number : ", num)
	
	
out_arr = np.atleast_3d(num)
print ("output 3d array from input number : ", out_arr)

Comments

Submit
0 Comments