Tools for Working with Lists : Array : Data Type PYTHON examples


PYTHON examples » Data Type » Array »

 

Tools for Working with Lists




# The array module provides an array() object that stores only 
# homogenous data. 

from array import array

a = array('H'[40001070022222])
sum(a)

a[1:3]
array('H'[10700])


           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Data Type
» Array