numpy.atleast_2d(*arrays)
# welcome to softhunt.net
# Python program explaining
# numpy.atleast_2d() function
import numpy as np
num = 15
print ("Input number : ", num)
out_arr = np.atleast_2d(num)
print ("output 2d array from input number : ", out_arr)
# welcome to softhunt.net
# Python program explaining
# numpy.atleast_2d() function
import numpy as np
my_list = [1, 2, 3],
print ("Input list : ", my_list)
out_arr = np.atleast_2d(my_list)
print ("output 2d array : ", out_arr)