Creating, accessing and changing a list. : Length : List PYTHON TUTORIALS


PYTHON TUTORIALS » List » Length »

 

Creating, accessing and changing a list.


aList = []    create empty list

for number in range111 ):
   aList += number ]

print "The value of aList is:", aList   

print "nAccessing values by iteration:"

for item in aList:
   print item,

print   

print "Subscript   Value"

for i in rangelenaList ) ):
   print "%9d %7d" i, aList] )

print "nModifying a list value..."
print "Value of aList before modification:", aList
aList= -100   
aList-19
print "Value of aList after modification:", aList



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo List
» Length