How to convert list to array in python?
An array is basically a data structure which can hold more than one value at a time. It is a collection or ordered series of elements of the same type.
Arrays can only take a single datatype element.
A list is a data structure, or it can be considered a container that can be used to store multiple data at once. The list will be ordered and there will be a definite count of it. The elements are indexed according to a sequence and indexing is done with 0 as the first index.
We can convert list to array with the help of a library called numpy. We can easily import the library and convert list into array.
e.g.,
import numpy l=[1, 2, 3, 4, 5] a=numpy.array(l) print(a)
This is how we convert list into array in python.
Subscribe
Login
Please login to comment
0 Discussion