How to Update Lists : List Assign : List PYTHON examples


PYTHON examples » List » List Assign »

 

How to Update Lists


 

aList = [123'abc', 4.56['inner', 'list'], (7-9j)]
print aList[2]
aList[2'float replacer'
print aList
aList.append("hi, i'm new here")
print aList

   
  



Leave a Comment / Note


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


PYTHON examples

 Navioo List
» List Assign