Answers for "Python NumPy atleast_2d Function Example 2"

0

Python NumPy atleast_2d Function Example 2

# 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)
Posted by: Guest on April-21-2022

Python Answers by Framework

Browse Popular Code Answers by Language