1from array import *
2array_num = array('i', [1, 3, 5, 7, 9])
3print("Original array: "+str(array_num))
4print("Current memory address and the length in elements of the buffer: "+str(array_num.buffer_info()))
5print("The size of the memory buffer in bytes: "+str(array_num.buffer_info()[1] * array_num.itemsize))
6