memory adress

Solutions on MaxInterview for memory adress by the best coders in the world

showing results for - "memory adress"
Maceo
22 Jun 2018
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
similar questions
queries leading to this page
memory adress