Passing lists and individual list elements to functions. : Parameter : Function PYTHON TUTORIALS


PYTHON TUTORIALS » Function » Parameter »

 

Passing lists and individual list elements to functions.


def modifyListaList ):
   for i in rangelenaList ) ):
      aList*= 2

def modifyElementelement ):
   element *= 2

aList = 1234]

print "Effects of passing entire list:"
print "The values of the original list are:"

for item in aList:
   print item,

modifyListaList )

for item in aList:
   print item,

print "aList[ 3 ] before modifyElement:", aList]
modifyElementaList] )
print "aList[ 3 ] after modifyElement:", aList]

print "aList[ 2:4 ] before modifyList:", aList2:]
modifyListaList2:] )
print "aList[ 2:4 ] after modifyList:", aList2:]



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Function
» Parameter