The asanyarray()
function in Python converts the input data to an array.
numpy.asanyarray(a, dtype=None)
The asanyarray()
function takes the following parameter values:
a
: This represents the input data converted to an array. It could be a list, lists of tuples, tuples of lists, and arrays.dtype
: This represents the data type of the desired array. By default, the data type of the array is determined from the input data. This is optional.The asanyarray()
function returns an array representation of the input data.
import numpy as np# creating an input dataa = [1.5, 2.0, 3.1, 4.4, 5]# converting the input data to an arraymyarray = np.asanyarray(a, dtype = np.int)print(myarray)
numpy
module.x
With five elements.x
to an int-type array using the asanyarray()
function. The output is assigned to a variable, myarray
.myarray
array.