Sometimes while working in Python we can have a problem in which we need to restrict the data elements to be just of one type. List, can be heterogeneous, can have data of multiple data types and it is sometimes undesirable. There a need to convert this to data structure which restricts the type of data. The Python language comes with array data structure which can be used for this purpose. Let’s discuss a way to convert list to array.
Method : Using array() + data type indicator
This task can be easily performed using array(). This is an inbuilt function in Python to convert to array. The data type indicator “i” is used in case of integers, which restricts data type.
# Python3 code to demonstrate working of # Convert list to Python array # Using array() + data type indicator from array import array # initializing list test_list = [6, 4, 8, 9, 10] # printing list print("The original list : " + str(test_list)) # Convert list to Python array # Using array() + data type indicator res = array("i", test_list) # Printing result print("List after conversion to array : " + str(res)) |
The original list : [6, 4, 8, 9, 10]
List after conversion to array : array('i', [6, 4, 8, 9, 10])
Recommended Posts:
- Python | Convert list of string to list of list
- Python | Convert list of tuples to list of list
- Python | Convert List of String List to String List
- Python | Convert a nested list into a flat list
- Python | Convert list of strings and characters to list of characters
- Python | Convert a string representation of list into list
- Python | Convert list of string into sorted list of integer
- Python | Convert list of tuples into list
- Python | Convert list of tuples to list of strings
- Python | Convert given list into nested list
- Python | Convert list of numerical string to list of Integers
- Python | Convert list into list of lists
- Python | Convert list of strings to list of tuples
- Python | Convert string enclosed list to list
- Python | Convert 1D list to 2D list of variable length
- Python | Ways to Convert a 3D list into a 2D list
- Python | Convert list to indexed tuple list
- Python | Convert Integral list to tuple list
- Python | Convert mixed data types tuple list to string list
- Python | Convert List of lists to list of Strings
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

