When you need a Python list object, you can utilize the tolist() method to convert your array to a list.
list
tolist()
my_array = array('i', [1,2,3,4,5]) c = my_array.tolist() # [1, 2, 3, 4, 5]