This website collects cookies to deliver better user experience
variable_name = array.array('Type code',[item1 , item2, item3,])
arr = array.array('d', [1,2,3,4])
array.array(‘Type code or UniCode’ , [list of items] )
python_list = [1,2,3,4,5,"This is a List"] print(python_list)
python_array = array.array('i' , [1,2,4,5,6,7,]) print(python_array)
28
0