- python lists
- numpy arrays
- arrays from the array module
import array
# efficient array of short ints
buf=array.array('h',[1,2,3,4,5])
#show contents of buf
buf
import array
# efficient array of short ints
buf=array.array('h',[1,2,3,4,5])
#show contents of buf
buf